summaryrefslogtreecommitdiff
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, 3 insertions, 1 deletions
diff --git a/packages/astro/test/ssr-split-manifest.test.js b/packages/astro/test/ssr-split-manifest.test.js
index 394740395..38a3233ee 100644
--- a/packages/astro/test/ssr-split-manifest.test.js
+++ b/packages/astro/test/ssr-split-manifest.test.js
@@ -26,6 +26,8 @@ describe('astro:ssr-manifest, split', () => {
currentRoutes = routes;
},
}),
+ // test suite was authored when inlineStylesheets defaulted to never
+ build: { inlineStylesheets: 'never' },
});
await fixture.build();
});
@@ -43,7 +45,7 @@ describe('astro:ssr-manifest, split', () => {
it('should give access to entry points that exists on file system', async () => {
// number of the pages inside src/
- expect(entryPoints.size).to.equal(5);
+ expect(entryPoints.size).to.equal(6);
for (const fileUrl of entryPoints.values()) {
let filePath = fileURLToPath(fileUrl);
expect(existsSync(filePath)).to.be.true;