summaryrefslogtreecommitdiff
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
commit6e30bdc941e397afe3cd789bc018c6b1dd2b6675 (patch)
tree7401873d6d08f26d493e0a723e756956058727f8
parent754e4fd31ce49eadb2cf4951e941a48d11d10e73 (diff)
downloadastro-6e30bdc941e397afe3cd789bc018c6b1dd2b6675.tar.gz
astro-6e30bdc941e397afe3cd789bc018c6b1dd2b6675.tar.zst
astro-6e30bdc941e397afe3cd789bc018c6b1dd2b6675.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);
});
});