aboutsummaryrefslogtreecommitdiff
path: root/packages/astro/test/ssr-split-manifest.test.js
diff options
context:
space:
mode:
Diffstat (limited to 'packages/astro/test/ssr-split-manifest.test.js')
-rw-r--r--packages/astro/test/ssr-split-manifest.test.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/astro/test/ssr-split-manifest.test.js b/packages/astro/test/ssr-split-manifest.test.js
index 2f66b3676..06a6fe8c6 100644
--- a/packages/astro/test/ssr-split-manifest.test.js
+++ b/packages/astro/test/ssr-split-manifest.test.js
@@ -48,7 +48,7 @@ describe('astro:ssr-manifest, split', () => {
const $ = cheerio.load(html);
assert.match(
$('#assets').text(),
- /\["\/_astro\/index\.([\w-]{8})\.css","\/prerender\/index\.html"\]/
+ /\["\/_astro\/index\.([\w-]{8})\.css","\/prerender\/index\.html"\]/,
);
});
@@ -66,7 +66,7 @@ describe('astro:ssr-manifest, split', () => {
resolve('./test/fixtures/ssr-split-manifest/dist/client/prerender/index.html'),
{
encoding: 'utf8',
- }
+ },
);
assert.equal(text.includes('<title>Pre render me</title>'), true);
});