diff options
author | 2022-10-06 15:55:06 +0000 | |
---|---|---|
committer | 2022-10-06 15:55:06 +0000 | |
commit | e71fc8b5fcefdddbffeaf8b5d383ef067116b29c (patch) | |
tree | 8bedb260754770ebf6a774dac6b1a236e027000f | |
parent | a2b66c754969af4ce98bb10654286a4445cb0999 (diff) | |
download | astro-e71fc8b5fcefdddbffeaf8b5d383ef067116b29c.tar.gz astro-e71fc8b5fcefdddbffeaf8b5d383ef067116b29c.tar.zst astro-e71fc8b5fcefdddbffeaf8b5d383ef067116b29c.zip |
[ci] format
-rw-r--r-- | packages/integrations/image/test/picture-ssg.test.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/integrations/image/test/picture-ssg.test.js b/packages/integrations/image/test/picture-ssg.test.js index 0b99e4933..55134a154 100644 --- a/packages/integrations/image/test/picture-ssg.test.js +++ b/packages/integrations/image/test/picture-ssg.test.js @@ -35,7 +35,7 @@ describe('SSG pictures - dev', function () { id: '#spaces', url: '/@astroimage/assets/blog/introducing astro.jpg', query: { f: 'jpg', w: '768', h: '414' }, - alt: 'spaces' + alt: 'spaces', }, { title: 'Inline imports', @@ -128,7 +128,7 @@ describe('SSG pictures with subpath - dev', function () { id: '#spaces', url: '/@astroimage/assets/blog/introducing astro.jpg', query: { f: 'jpg', w: '768', h: '414' }, - alt: 'spaces' + alt: 'spaces', }, { title: 'Inline imports', @@ -271,7 +271,7 @@ describe('SSG pictures - build', function () { // width and join the other segments back for the filepath const width = segments.pop(); const pathname = segments.join(' '); - + const widthNum = parseInt(width.substring(0, width.length - 1)); verifyImage(pathname, { |