diff --git a/compat-tests/utils/testUtils.ts b/compat-tests/utils/testUtils.ts index e3e1f61..20e1ea4 100644 --- a/compat-tests/utils/testUtils.ts +++ b/compat-tests/utils/testUtils.ts @@ -29,7 +29,10 @@ export function testServerAndPage({ await Promise.race([ d.promise, 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, + ), ), ])