summaryrefslogtreecommitdiff
path: root/packages/integrations/image/test/image-ssr-dev.test.js
diff options
context:
space:
mode:
authorGravatar matthewp <matthewp@users.noreply.github.com> 2023-01-30 20:31:49 +0000
committerGravatar fredkbot <fred+astrobot@astro.build> 2023-01-30 20:31:49 +0000
commit43ec7f374aa2bced87ca1a1f163d362d13288cd0 (patch)
tree0c3f82ae2fd17639ccc878328a0075cef1d43272 /packages/integrations/image/test/image-ssr-dev.test.js
parentb3e65991f731f5320ba5826c731934a8e8482493 (diff)
downloadastro-43ec7f374aa2bced87ca1a1f163d362d13288cd0.tar.gz
astro-43ec7f374aa2bced87ca1a1f163d362d13288cd0.tar.zst
astro-43ec7f374aa2bced87ca1a1f163d362d13288cd0.zip
[ci] format
Diffstat (limited to 'packages/integrations/image/test/image-ssr-dev.test.js')
-rw-r--r--packages/integrations/image/test/image-ssr-dev.test.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/packages/integrations/image/test/image-ssr-dev.test.js b/packages/integrations/image/test/image-ssr-dev.test.js
index 7f0e0229e..fbaa6f965 100644
--- a/packages/integrations/image/test/image-ssr-dev.test.js
+++ b/packages/integrations/image/test/image-ssr-dev.test.js
@@ -6,7 +6,8 @@ import { loadFixture } from './test-utils.js';
import testAdapter from '../../../astro/test/test-adapter.js';
const __dirname = fileURLToPath(new URL('.', import.meta.url));
-const toAstroImage = (relpath) => '/@astroimage' + pathToFileURL(join(__dirname, 'fixtures/basic-image', relpath)).pathname;
+const toAstroImage = (relpath) =>
+ '/@astroimage' + pathToFileURL(join(__dirname, 'fixtures/basic-image', relpath)).pathname;
describe('SSR images - dev', function () {
let fixture;