diff options
author | 2023-04-27 16:18:45 +0000 | |
---|---|---|
committer | 2023-04-27 16:18:45 +0000 | |
commit | 737f8d855aad08c4f38a1f35387b8060312dc20c (patch) | |
tree | 386c1ebaadcdac2b6d2d85a8d2821c5a1af94416 | |
parent | ebae1eaf87f49399036033c673b513338f7d9c42 (diff) | |
download | astro-737f8d855aad08c4f38a1f35387b8060312dc20c.tar.gz astro-737f8d855aad08c4f38a1f35387b8060312dc20c.tar.zst astro-737f8d855aad08c4f38a1f35387b8060312dc20c.zip |
[ci] format
-rw-r--r-- | packages/astro/test/core-image.test.js | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/packages/astro/test/core-image.test.js b/packages/astro/test/core-image.test.js index 7865094e5..57720f0c4 100644 --- a/packages/astro/test/core-image.test.js +++ b/packages/astro/test/core-image.test.js @@ -620,7 +620,12 @@ describe('astro:image', () => { assets: true, }, image: { - service: { entrypoint: fileURLToPath(new URL('./fixtures/core-image/service.mjs', import.meta.url)), config: {foo: 'bar'} } + service: { + entrypoint: fileURLToPath( + new URL('./fixtures/core-image/service.mjs', import.meta.url) + ), + config: { foo: 'bar' }, + }, }, }); devServer = await fixture.startDevServer(); |