summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar FredKSchott <FredKSchott@users.noreply.github.com> 2022-07-19 04:50:06 +0000
committerGravatar fredkbot <fred+astrobot@astro.build> 2022-07-19 04:50:06 +0000
commit167ed5486a47c207d1b3e5d6040f3bfbf8804f79 (patch)
tree20a1d2135940f90673f400db1b7597bd0dbc73de
parent299b4afcab090bbe014d4eaf2a5ea439e8436bcc (diff)
downloadastro-167ed5486a47c207d1b3e5d6040f3bfbf8804f79.tar.gz
astro-167ed5486a47c207d1b3e5d6040f3bfbf8804f79.tar.zst
astro-167ed5486a47c207d1b3e5d6040f3bfbf8804f79.zip
[ci] format
-rw-r--r--packages/integrations/image/test/image-ssg.test.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/packages/integrations/image/test/image-ssg.test.js b/packages/integrations/image/test/image-ssg.test.js
index 3c5d4802e..8b93dc037 100644
--- a/packages/integrations/image/test/image-ssg.test.js
+++ b/packages/integrations/image/test/image-ssg.test.js
@@ -65,7 +65,9 @@ describe('SSG images', function () {
it('includes src, width, and height attributes', () => {
const image = $('#google');
- expect(image.attr('src')).to.equal(`/_image/googlelogo_color_272x92dp-${HASH}_544x184.webp`);
+ expect(image.attr('src')).to.equal(
+ `/_image/googlelogo_color_272x92dp-${HASH}_544x184.webp`
+ );
expect(image.attr('width')).to.equal('544');
expect(image.attr('height')).to.equal('184');
});