diff options
author | 2024-07-17 07:49:14 +0000 | |
---|---|---|
committer | 2024-07-17 07:49:14 +0000 | |
commit | 3f4735ee9bae94db5d4b14402f4cffd15aebcc5c (patch) | |
tree | 3f4bc20146647cf78120ad933215b63c78c93286 | |
parent | b498461e277bffb0abe21b59a94b1e56a8c69d47 (diff) | |
download | astro-3f4735ee9bae94db5d4b14402f4cffd15aebcc5c.tar.gz astro-3f4735ee9bae94db5d4b14402f4cffd15aebcc5c.tar.zst astro-3f4735ee9bae94db5d4b14402f4cffd15aebcc5c.zip |
[ci] format
-rw-r--r-- | packages/astro/test/ssr-prerender-chunks.test.js | 2 |
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/); } |