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

clean unnecessary change

This commit is contained in:
Goulven Clec'h 2024-04-29 15:35:56 +02:00
parent 2168f47c4d
commit 984f6bf3af
2 changed files with 4 additions and 4 deletions

View file

@ -40,7 +40,7 @@ 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(currentRoutes, pagePath);
const app = await fixture.loadEntryPoint(pagePath, currentRoutes);
const request = new Request('http://example.com/');
const response = await app.render(request);
const html = await response.text();
@ -73,7 +73,7 @@ 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(currentRoutes, pagePath);
const app = await fixture.loadEntryPoint(pagePath, currentRoutes);
const request = new Request('http://example.com/');
const response = await app.render(request);
const html = await response.text();
@ -107,7 +107,7 @@ 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(currentRoutes, pagePath);
const app = await fixture.loadEntryPoint(pagePath, currentRoutes);
const request = new Request('http://example.com/');
const response = await app.render(request);
const html = await response.text();

View file

@ -220,7 +220,7 @@ export async function loadFixture(inlineConfig) {
app.manifest = manifest;
return app;
},
loadEntryPoint: async (routes, pagePath, streaming) => {
loadEntryPoint: async (pagePath, routes, streaming) => {
const virtualModule = getVirtualModulePageName(RESOLVED_SPLIT_MODULE_ID, pagePath);
const filePath = makeSplitEntryPointFileName(virtualModule, routes);
const url = new URL(`./server/${filePath}?id=${fixtureId}`, config.outDir);