0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2025-03-10 23:01:26 -05:00

[ci] format

This commit is contained in:
lilnasy 2023-11-07 14:03:45 +00:00 committed by astrobot-houston
parent 503f60fe8b
commit 75eaeadf73

View file

@ -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);
});
});