Skip to content

Commit 335e6d0

Browse files
authored
Update timeout for starting browsers. (#4596)
1 parent 56030a0 commit 335e6d0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

packages-exp/auth-exp/test/integration/webdriver/util/test_runner.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,8 @@ export function browserDescribe(
5757
setTimeout(() => {
5858
for (const browser of BROWSERS) {
5959
describe(`Testing in browser "${browser}"`, () => {
60-
before(async () => {
60+
before(async function () {
61+
this.timeout(20000); // Starting browsers can be slow.
6162
await DRIVER.start(browser);
6263

6364
// Prime for the first test.

0 commit comments

Comments
 (0)