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

chore: remove console.log from test (#10653)

This commit is contained in:
Arsh 2024-04-03 00:30:36 +05:30 committed by GitHub
parent a29b0a3d69
commit daef0e394a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -23,7 +23,6 @@ describe('Serverless prerender', () => {
'../.vercel/output/functions/_render.func/packages/integrations/vercel/test/fixtures/serverless-prerender/.vercel/output/_functions/chunks/pages/generic_*.mjs'
);
const contents = await fixture.readFile(file);
console.log(contents);
assert.ok(!contents.includes('const outDir ='), "outDir is tree-shaken if it's not imported");
});