aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/e2e/wdio.local.conf.ts
blob: a4c517f5e303cb169b844b59f1f03018719e3ae2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
import { config as mainConfig } from './wdio.main.conf'

const prefs = {
  'intl.accept_languages': 'en'
}

module.exports = {
  config: {
    ...mainConfig,

    runner: 'local',

    maxInstances: 2,

    capabilities: [
      {
        browserName: 'chrome',
        'goog:chromeOptions': {
          prefs
        }
      },
      {
        browserName: 'firefox',
        'moz:firefoxOptions': {
          binary: '/usr/bin/firefox-developer-edition',
          prefs
        }
      }
    ],

    services: [ 'chromedriver', 'geckodriver' ],

    beforeSession: function (config, capabilities) {
      if (capabilities['browserName'] === 'chrome') {
        config.baseUrl = 'http://localhost:9001'
      } else {
        config.baseUrl = 'http://localhost:9002'
      }
    }
  } as WebdriverIO.Config
}