summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--packages/astro/test/ssr-prerender-chunks.test.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/astro/test/ssr-prerender-chunks.test.js b/packages/astro/test/ssr-prerender-chunks.test.js
index c44d1d347..86c906288 100644
--- a/packages/astro/test/ssr-prerender-chunks.test.js
+++ b/packages/astro/test/ssr-prerender-chunks.test.js
@@ -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/);
}