Skip to content

Commit

Permalink
Bump timeout for flaky windows test
Browse files Browse the repository at this point in the history
  • Loading branch information
brophdawg11 committed Sep 19, 2024
1 parent 9ff2a8d commit d1bb894
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions integration/root-route-test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand Down Expand Up @@ -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() {
Expand Down

0 comments on commit d1bb894

Please sign in to comment.