Skip to content

Commit d1bb894

Browse files
committed
Bump timeout for flaky windows test
1 parent 9ff2a8d commit d1bb894

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

integration/root-route-test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ test.describe("root route", () => {
249249
// which should throw on the initial render _and_ the error render,
250250
// resulting in us bubbling to the default error boundary and skipping
251251
// our Layout component entirely to avoid a loop
252-
lazy: new Promise((r) => setTimeout(() => r(null), 500)),
252+
lazy: new Promise((r) => setTimeout(() => r(null), 1000)),
253253
};
254254
}
255255
export default function Root() {
@@ -379,7 +379,7 @@ test.describe("root route", () => {
379379
// which should throw on the initial render _and_ the error render,
380380
// resulting in us bubbling to the default error boundary and skipping
381381
// our Layout component entirely to avoid a loop
382-
lazy: new Promise((r) => setTimeout(() => r(null), 100)),
382+
lazy: new Promise((r) => setTimeout(() => r(null), 1000)),
383383
};
384384
}
385385
export default function Root() {

0 commit comments

Comments
 (0)