0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2025-03-31 23:31:30 -05:00

tmp(ssr-split-manifest): fix test ?

This commit is contained in:
Goulven Clec'h 2024-04-25 12:15:09 +02:00
parent 8be75d4b02
commit ae2b01737d
2 changed files with 8 additions and 6 deletions

View file

@ -40,7 +40,8 @@ describe('astro:ssr-manifest, split', () => {
it('should be able to render a specific entry point', async () => {
const pagePath = 'src/pages/index.astro';
const app = await fixture.loadEntryPoint(pagePath, currentRoutes);
const routePath = '/';
const app = await fixture.loadEntryPoint(currentRoutes, pagePath, routePath);
const request = new Request('http://example.com/');
const response = await app.render(request);
const html = await response.text();
@ -73,7 +74,8 @@ describe('astro:ssr-manifest, split', () => {
it('should emit an entry point to request the pre-rendered page', async () => {
const pagePath = 'src/pages/prerender.astro';
const app = await fixture.loadEntryPoint(pagePath, currentRoutes);
const routePath = '/prerender';
const app = await fixture.loadEntryPoint(currentRoutes, pagePath, routePath);
const request = new Request('http://example.com/');
const response = await app.render(request);
const html = await response.text();
@ -107,7 +109,8 @@ describe('astro:ssr-manifest, split', () => {
});
it('should correctly build, and not create a "uses" entry point', async () => {
const pagePath = 'src/pages/index.astro';
const app = await fixture.loadEntryPoint(pagePath, currentRoutes);
const routePath = '/';
const app = await fixture.loadEntryPoint(currentRoutes, pagePath, routePath);
const request = new Request('http://example.com/');
const response = await app.render(request);
const html = await response.text();

View file

@ -220,9 +220,8 @@ export async function loadFixture(inlineConfig) {
app.manifest = manifest;
return app;
},
loadEntryPoint: async (pagePath, routes, streaming) => {
// TODO: Change that broken usage of getVirtualModulePageName
const virtualModule = getVirtualModulePageName(RESOLVED_SPLIT_MODULE_ID, pagePath);
loadEntryPoint: async (routes, pagePath, routePath, streaming) => {
const virtualModule = getVirtualModulePageName(RESOLVED_SPLIT_MODULE_ID, pagePath, routePath);
const filePath = makeSplitEntryPointFileName(virtualModule, routes);
const url = new URL(`./server/${filePath}?id=${fixtureId}`, config.outDir);
const { createApp, manifest } = await import(url);