Skip to content

Commit 8458c3e

Browse files
committed
fix: missing mock param in basic e2e
1 parent adedbfd commit 8458c3e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/demo-react.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ function getAllPairs<T>(list: T[]): [T, T][] {
8383
test(`load`, async ({ browser, browserName, baseURL }) => {
8484
const context = await browser.newContext();
8585
const page = await context.newPage();
86-
await page.goto(baseURL! + "?mock");
86+
await page.goto(baseURL! + "?mock=on");
8787
await waitForStableVideo(page, "", 1000);
8888
});
8989

0 commit comments

Comments
 (0)