aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar lilnasy <lilnasy@users.noreply.github.com> 2023-11-07 14:03:45 +0000
committerGravatar astrobot-houston <fred+astrobot@astro.build> 2023-11-07 14:03:45 +0000
commit75eaeadf736686e655d4537a55cfda9a2b8448d5 (patch)
treee8c11973599632ba411a0b7a1679950b956fe93d
parent503f60fe8b0004fb449900f73fcbf560cb979794 (diff)
downloadastro-75eaeadf736686e655d4537a55cfda9a2b8448d5.tar.gz
astro-75eaeadf736686e655d4537a55cfda9a2b8448d5.tar.zst
astro-75eaeadf736686e655d4537a55cfda9a2b8448d5.zip
[ci] format
-rw-r--r--packages/integrations/vercel/test/static-assets.test.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/integrations/vercel/test/static-assets.test.js b/packages/integrations/vercel/test/static-assets.test.js
index 92e37c0af..606addfb3 100644
--- a/packages/integrations/vercel/test/static-assets.test.js
+++ b/packages/integrations/vercel/test/static-assets.test.js
@@ -57,13 +57,13 @@ describe('Static Assets', () => {
const { default: vercel } = await import('@astrojs/vercel/serverless');
it('has cache control', async () => {
- await build({ output: "server", adapter: vercel() });
+ await build({ output: 'server', adapter: vercel() });
checkValidCacheControl();
});
it('has cache control other assets', async () => {
const assets = '_foo';
- await build({ output: "server", adapter: vercel(), assets });
+ await build({ output: 'server', adapter: vercel(), assets });
checkValidCacheControl(assets);
});
});