Skip to content

Commit 630fb4b

Browse files
committed
fix(ci): enable no-sandbox to avoid user-dir race conditions when running tests in parallel
1 parent d59c622 commit 630fb4b

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

wdio.conf.ts

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -90,14 +90,15 @@ export const config: WebdriverIOConfig = {
9090

9191
'goog:chromeOptions': {
9292
args: [
93-
'--disable-web-security',
94-
'--allow-file-access-from-files',
95-
'--allow-file-access',
96-
'--disable-infobars',
97-
'--ignore-certificate-errors',
98-
'--headless',
99-
'--disable-gpu',
100-
'--window-size=1024x768',
93+
'no-sandbox',
94+
'disable-web-security',
95+
'allow-file-access-from-files',
96+
'allow-file-access',
97+
'disable-infobars',
98+
'ignore-certificate-errors',
99+
'headless',
100+
'disable-gpu',
101+
'window-size=1024x768',
101102
]
102103
}
103104
}],

0 commit comments

Comments
 (0)