We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 56030a0 commit 335e6d0Copy full SHA for 335e6d0
packages-exp/auth-exp/test/integration/webdriver/util/test_runner.ts
@@ -57,7 +57,8 @@ export function browserDescribe(
57
setTimeout(() => {
58
for (const browser of BROWSERS) {
59
describe(`Testing in browser "${browser}"`, () => {
60
- before(async () => {
+ before(async function () {
61
+ this.timeout(20000); // Starting browsers can be slow.
62
await DRIVER.start(browser);
63
64
// Prime for the first test.
0 commit comments