aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/blueimp/jquery-file-upload/wdio/firefox.js
blob: a4403de9ec29bc2de0e6ceecf18ed5de9ed57915 (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
'use strict'

/* eslint-disable jsdoc/valid-types */
/** @type WebdriverIO.Config */
const config = {
  hostname: 'geckodriver',
  capabilities: [
    {
      // geckodriver supports no parallel sessions:
      maxInstances: 1,
      browserName: 'firefox',
      'moz:firefoxOptions': {
        //args: ['-headless', '--window-size=1440,900']
      }
    }
  ],
  videos: {
    enabled: true,
    resolution: '1440x900',
    startDelay: 500,
    stopDelay: 500
  }
}

exports.config = Object.assign({}, require('./chrome').config, config)