aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/e2e/wdio.local-test.conf.ts
diff options
context:
space:
mode:
Diffstat (limited to 'client/e2e/wdio.local-test.conf.ts')
-rw-r--r--client/e2e/wdio.local-test.conf.ts28
1 files changed, 28 insertions, 0 deletions
diff --git a/client/e2e/wdio.local-test.conf.ts b/client/e2e/wdio.local-test.conf.ts
new file mode 100644
index 000000000..6ae426322
--- /dev/null
+++ b/client/e2e/wdio.local-test.conf.ts
@@ -0,0 +1,28 @@
1import { config as mainConfig } from './wdio.main.conf'
2
3const prefs = {
4 'intl.accept_languages': 'en'
5}
6
7module.exports = {
8 config: {
9 ...mainConfig,
10
11 runner: 'local',
12
13 maxInstances: 1,
14 specFileRetries: 0,
15
16 capabilities: [
17 {
18 browserName: 'chrome',
19 acceptInsecureCerts: true,
20 'goog:chromeOptions': {
21 prefs
22 }
23 }
24 ],
25
26 services: [ 'chromedriver' ]
27 } as WebdriverIO.Config
28}