From 3a48df2aaf9d5569e65a1178cdcfe70762471a84 Mon Sep 17 00:00:00 2001 From: Lukas Stracke Date: Fri, 27 Sep 2024 18:00:03 +0200 Subject: [PATCH] test(e2e/solidstart): Skip hydration error to unblock CI --- .../test-applications/solidstart/tests/errorboundary.test.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dev-packages/e2e-tests/test-applications/solidstart/tests/errorboundary.test.ts b/dev-packages/e2e-tests/test-applications/solidstart/tests/errorboundary.test.ts index b709760aab94..b6164d541b93 100644 --- a/dev-packages/e2e-tests/test-applications/solidstart/tests/errorboundary.test.ts +++ b/dev-packages/e2e-tests/test-applications/solidstart/tests/errorboundary.test.ts @@ -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; @@ -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;