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 2457c1a commit 0cf4e82Copy full SHA for 0cf4e82
eform-client/wdio-headless-step2e.conf.ts
@@ -73,7 +73,9 @@ export const config: WebdriverIO.Config = {
73
// maxInstances can get overwritten per capability. So if you have an in-house Selenium
74
// grid with only 5 firefox instances available you can make sure that not more than
75
// 5 instances get started at a time.
76
- maxInstances: 5,
+ // NOTE: Set to 1 for step2e because these tests modify shared application settings
77
+ // and must run sequentially to avoid race conditions
78
+ maxInstances: 1,
79
//
80
browserName: 'chrome',
81
'goog:chromeOptions': {
0 commit comments