0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2025-02-17 22:44:24 -05:00

[ci] format

This commit is contained in:
lilnasy 2023-11-07 14:03:45 +00:00 committed by astrobot-houston
parent 754e4fd31c
commit 6e30bdc941

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