Skip to content

Commit

Permalink
Update timeout for starting browsers. (#4596)
Browse files Browse the repository at this point in the history
  • Loading branch information
yuchenshi authored Mar 9, 2021
1 parent 56030a0 commit 335e6d0
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,8 @@ export function browserDescribe(
setTimeout(() => {
for (const browser of BROWSERS) {
describe(`Testing in browser "${browser}"`, () => {
before(async () => {
before(async function () {
this.timeout(20000); // Starting browsers can be slow.
await DRIVER.start(browser);

// Prime for the first test.
Expand Down

0 comments on commit 335e6d0

Please sign in to comment.