From d1bb8941a16f8d3076b34eeedb23b1b0466bf40c Mon Sep 17 00:00:00 2001 From: Matt Brophy Date: Thu, 19 Sep 2024 17:26:27 -0400 Subject: [PATCH] Bump timeout for flaky windows test --- integration/root-route-test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/integration/root-route-test.ts b/integration/root-route-test.ts index 5326c22a2f..233a428da0 100644 --- a/integration/root-route-test.ts +++ b/integration/root-route-test.ts @@ -249,7 +249,7 @@ test.describe("root route", () => { // which should throw on the initial render _and_ the error render, // resulting in us bubbling to the default error boundary and skipping // our Layout component entirely to avoid a loop - lazy: new Promise((r) => setTimeout(() => r(null), 500)), + lazy: new Promise((r) => setTimeout(() => r(null), 1000)), }; } export default function Root() { @@ -379,7 +379,7 @@ test.describe("root route", () => { // which should throw on the initial render _and_ the error render, // resulting in us bubbling to the default error boundary and skipping // our Layout component entirely to avoid a loop - lazy: new Promise((r) => setTimeout(() => r(null), 100)), + lazy: new Promise((r) => setTimeout(() => r(null), 1000)), }; } export default function Root() {