aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/e2e/wdio.local.conf.ts
diff options
context:
space:
mode:
Diffstat (limited to 'client/e2e/wdio.local.conf.ts')
-rw-r--r--client/e2e/wdio.local.conf.ts4
1 files changed, 4 insertions, 0 deletions
diff --git a/client/e2e/wdio.local.conf.ts b/client/e2e/wdio.local.conf.ts
index a4c517f5e..43b820ca6 100644
--- a/client/e2e/wdio.local.conf.ts
+++ b/client/e2e/wdio.local.conf.ts
@@ -3,6 +3,7 @@ import { config as mainConfig } from './wdio.main.conf'
3const prefs = { 3const prefs = {
4 'intl.accept_languages': 'en' 4 'intl.accept_languages': 'en'
5} 5}
6process.env.LANG = 'en'
6 7
7module.exports = { 8module.exports = {
8 config: { 9 config: {
@@ -16,6 +17,7 @@ module.exports = {
16 { 17 {
17 browserName: 'chrome', 18 browserName: 'chrome',
18 'goog:chromeOptions': { 19 'goog:chromeOptions': {
20 args: [ '--headless', '--disable-gpu', '--window-size=1280,1024' ],
19 prefs 21 prefs
20 } 22 }
21 }, 23 },
@@ -23,6 +25,8 @@ module.exports = {
23 browserName: 'firefox', 25 browserName: 'firefox',
24 'moz:firefoxOptions': { 26 'moz:firefoxOptions': {
25 binary: '/usr/bin/firefox-developer-edition', 27 binary: '/usr/bin/firefox-developer-edition',
28 args: [ '--headless', '--window-size=1280,1024' ],
29
26 prefs 30 prefs
27 } 31 }
28 } 32 }