diff options
Diffstat (limited to 'packages/astro/test/ssr-split-manifest.test.js')
-rw-r--r-- | packages/astro/test/ssr-split-manifest.test.js | 4 |
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 9e8a0981e..394740395 100644 --- a/packages/astro/test/ssr-split-manifest.test.js +++ b/packages/astro/test/ssr-split-manifest.test.js @@ -18,7 +18,9 @@ describe('astro:ssr-manifest, split', () => { output: 'server', adapter: testAdapter({ setEntryPoints(entries) { - entryPoints = entries; + if (entries) { + entryPoints = entries; + } }, setRoutes(routes) { currentRoutes = routes; |