diff options
author | 2022-08-22 19:49:45 +0000 | |
---|---|---|
committer | 2022-08-22 19:49:45 +0000 | |
commit | a20e811795c1294b446cfe1b83554dc8ef731628 (patch) | |
tree | d83cfeccb1ffb354424fab4fa84b87f52c8b819b | |
parent | 457e559cd5e8ac367598bb562a0350bbddb5dac7 (diff) | |
download | astro-a20e811795c1294b446cfe1b83554dc8ef731628.tar.gz astro-a20e811795c1294b446cfe1b83554dc8ef731628.tar.zst astro-a20e811795c1294b446cfe1b83554dc8ef731628.zip |
[ci] format
-rw-r--r-- | packages/integrations/image/test/image-ssg.test.js | 2 | ||||
-rw-r--r-- | packages/integrations/image/test/image-ssr.test.js | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/packages/integrations/image/test/image-ssg.test.js b/packages/integrations/image/test/image-ssg.test.js index 47bbe76b7..5b1b65b49 100644 --- a/packages/integrations/image/test/image-ssg.test.js +++ b/packages/integrations/image/test/image-ssg.test.js @@ -85,7 +85,7 @@ describe('SSG images', function () { verifyImage(`_image/googlelogo_color_272x92dp-${HASH_WITH_QUERY}_544x184.webp`, { width: 544, height: 184, - type: 'webp' + type: 'webp', }); }); }); diff --git a/packages/integrations/image/test/image-ssr.test.js b/packages/integrations/image/test/image-ssr.test.js index 9344dfc72..10ac32a37 100644 --- a/packages/integrations/image/test/image-ssr.test.js +++ b/packages/integrations/image/test/image-ssr.test.js @@ -145,7 +145,9 @@ describe('SSR images - build', function () { expect(searchParams.get('f')).to.equal('webp'); expect(searchParams.get('w')).to.equal('544'); expect(searchParams.get('h')).to.equal('184'); - expect(searchParams.get('href').endsWith('googlelogo_color_272x92dp.png?token=abc')).to.equal(true); + expect(searchParams.get('href').endsWith('googlelogo_color_272x92dp.png?token=abc')).to.equal( + true + ); }); }); }); |