Skip to content

Commit

Permalink
Fix image test fail (#5321)
Browse files Browse the repository at this point in the history
  • Loading branch information
bluwy committed Nov 8, 2022
1 parent 56c37a6 commit 7f3b039
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/integrations/image/test/image-ssr-build.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
2 changes: 1 addition & 1 deletion packages/integrations/image/test/picture-ssr-build.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 7f3b039

Please sign in to comment.