diff --git a/packages/integrations/image/test/image-ssr-build.test.js b/packages/integrations/image/test/image-ssr-build.test.js index a2b7d0150..c20692c0e 100644 --- a/packages/integrations/image/test/image-ssr-build.test.js +++ b/packages/integrations/image/test/image-ssr-build.test.js @@ -204,7 +204,7 @@ describe('SSR images with subpath - build', function () { it(title, async () => { const app = await fixture.loadTestAdapterApp(); - const request = new Request('http://example.com/'); + const request = new Request('http://example.com/docs/'); const response = await app.render(request); const html = await response.text(); const $ = cheerio.load(html); diff --git a/packages/integrations/image/test/picture-ssr-build.test.js b/packages/integrations/image/test/picture-ssr-build.test.js index aa3bdfc3e..57429fde8 100644 --- a/packages/integrations/image/test/picture-ssr-build.test.js +++ b/packages/integrations/image/test/picture-ssr-build.test.js @@ -195,7 +195,7 @@ describe('SSR pictures with subpath - build', function () { it(title, async () => { const app = await fixture.loadTestAdapterApp(); - const request = new Request('http://example.com/'); + const request = new Request('http://example.com/docs/'); const response = await app.render(request); const html = await response.text(); const $ = cheerio.load(html);