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:
Bjorn Lu 2024-07-17 07:49:14 +00:00 committed by Emanuele Stoppa
parent 015ac7588b
commit 0871eaac58

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