Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ test('captures an exception', async ({ page }) => {
);
});

await page.goto('/error-boundary');
await page.goto('/error-boundary');
await page.locator('#caughtErrorBtn').click();
const errorEvent = await errorEventPromise;
Expand Down Expand Up @@ -40,6 +41,7 @@ test('captures a second exception after resetting the boundary', async ({ page }
);
});

await page.goto('/error-boundary');
await page.goto('/error-boundary');
await page.locator('#caughtErrorBtn').click();
const firstErrorEvent = await firstErrorEventPromise;
Expand Down