From 0871eaac5800c5597c1900451690c7b46a87762f Mon Sep 17 00:00:00 2001 From: Bjorn Lu Date: Wed, 17 Jul 2024 07:49:14 +0000 Subject: [PATCH] [ci] format --- packages/astro/test/ssr-prerender-chunks.test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/astro/test/ssr-prerender-chunks.test.js b/packages/astro/test/ssr-prerender-chunks.test.js index c44d1d3476..86c9062886 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/); }