0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2025-01-20 22:12:38 -05:00

[ci] format

This commit is contained in:
Bjorn Lu 2024-07-17 07:49:14 +00:00 committed by astrobot-houston
parent b498461e27
commit 3f4735ee9b

View file

@ -24,7 +24,7 @@ describe('Chunks', () => {
assert.ok(files.length > 0);
for (const file of files) {
// Skip astro folder
if (file === 'astro') continue
if (file === 'astro') continue;
const content = await fixture.readFile(`/_worker.js/chunks/${file}`);
assert.doesNotMatch(content, /Static Page should not exist in chunks/);
}