Skip to content

Commit 8b122b7

Browse files
committed
more robust?
1 parent a2a627f commit 8b122b7

File tree

1 file changed

+3
-3
lines changed
  • packages/integration-tests/suites/replay/errors/errorsInSession

1 file changed

+3
-3
lines changed

packages/integration-tests/suites/replay/errors/errorsInSession/test.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -91,11 +91,11 @@ for (let i = 0; i < 100; i++) {
9191
const url = await getLocalTestPath({ testDir: __dirname });
9292

9393
await page.goto(url);
94-
await page.click('#go-background');
94+
void page.click('#go-background');
9595
await reqPromise0;
9696

97-
await page.click('#drop');
98-
await page.click('#go-background');
97+
void page.click('#drop');
98+
void page.click('#go-background');
9999
const req1 = await reqPromise1;
100100

101101
const event1 = getReplayEvent(req1);

0 commit comments

Comments
 (0)