Skip to content

Commit 8764f50

Browse files
committed
pls dear god
1 parent d67378e commit 8764f50

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

dev-packages/e2e-tests/test-applications/solidstart/tests/errorboundary.test.ts

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { expect, test } from '@playwright/test';
22
import { waitForError } from '@sentry-internal/test-utils';
33

4-
test.skip('captures an exception', async ({ page }) => {
4+
test('captures an exception', async ({ page }) => {
55
const errorEventPromise = waitForError('solidstart', errorEvent => {
66
return (
77
!errorEvent.type &&
@@ -10,6 +10,7 @@ test.skip('captures an exception', async ({ page }) => {
1010
);
1111
});
1212

13+
await page.waitForTimeout(5000);
1314
await page.goto('/error-boundary');
1415
await page.locator('#caughtErrorBtn').click();
1516
const errorEvent = await errorEventPromise;
@@ -31,7 +32,7 @@ test.skip('captures an exception', async ({ page }) => {
3132
});
3233
});
3334

34-
test.skip('captures a second exception after resetting the boundary', async ({ page }) => {
35+
test('captures a second exception after resetting the boundary', async ({ page }) => {
3536
const firstErrorEventPromise = waitForError('solidstart', errorEvent => {
3637
return (
3738
!errorEvent.type &&
@@ -40,6 +41,7 @@ test.skip('captures a second exception after resetting the boundary', async ({ p
4041
);
4142
});
4243

44+
await page.waitForTimeout(5000);
4345
await page.goto('/error-boundary');
4446
await page.locator('#caughtErrorBtn').click();
4547
const firstErrorEvent = await firstErrorEventPromise;

0 commit comments

Comments
 (0)