Increase the timeout in compat tests
This commit is contained in:
parent
f2317099a0
commit
b443d9a92b
1 changed files with 4 additions and 1 deletions
|
@ -29,7 +29,10 @@ export function testServerAndPage({
|
||||||
await Promise.race([
|
await Promise.race([
|
||||||
d.promise,
|
d.promise,
|
||||||
new Promise((_, reject) =>
|
new Promise((_, reject) =>
|
||||||
setTimeout(() => reject(`Server wasn't ready after 30 seconds`), 30000),
|
setTimeout(
|
||||||
|
() => reject(`Server wasn't ready after two minutes`),
|
||||||
|
1000 * 60 * 2,
|
||||||
|
),
|
||||||
),
|
),
|
||||||
])
|
])
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue