File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -249,7 +249,7 @@ test.describe("root route", () => {
249
249
// which should throw on the initial render _and_ the error render,
250
250
// resulting in us bubbling to the default error boundary and skipping
251
251
// 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 )),
253
253
};
254
254
}
255
255
export default function Root() {
@@ -379,7 +379,7 @@ test.describe("root route", () => {
379
379
// which should throw on the initial render _and_ the error render,
380
380
// resulting in us bubbling to the default error boundary and skipping
381
381
// 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 )),
383
383
};
384
384
}
385
385
export default function Root() {
You can’t perform that action at this time.
0 commit comments