diff options
author | Mario <mario@mariovavti.com> | 2020-05-07 21:49:08 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2020-05-07 21:49:08 +0000 |
commit | 2cba88f1ebd31184b4537e0918309f6515d44101 (patch) | |
tree | 519ce74b6569f09bc5b14c92b9f5c9da54e8efc4 /vendor/blueimp/jquery-file-upload/wdio/conf/chrome.js | |
parent | f132436af3c90cff8dcef852bd836546311036f3 (diff) | |
download | volse-hubzilla-2cba88f1ebd31184b4537e0918309f6515d44101.tar.gz volse-hubzilla-2cba88f1ebd31184b4537e0918309f6515d44101.tar.bz2 volse-hubzilla-2cba88f1ebd31184b4537e0918309f6515d44101.zip |
new files
Diffstat (limited to 'vendor/blueimp/jquery-file-upload/wdio/conf/chrome.js')
-rw-r--r-- | vendor/blueimp/jquery-file-upload/wdio/conf/chrome.js | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/vendor/blueimp/jquery-file-upload/wdio/conf/chrome.js b/vendor/blueimp/jquery-file-upload/wdio/conf/chrome.js new file mode 100644 index 000000000..270465e9c --- /dev/null +++ b/vendor/blueimp/jquery-file-upload/wdio/conf/chrome.js @@ -0,0 +1,40 @@ +'use strict' + +/* eslint-disable jsdoc/valid-types */ +/** @type WebdriverIO.Config */ +const config = { + hostname: 'chromedriver', + path: '/', + capabilities: [ + { + // Set maxInstances to 1 if screen recordings are enabled: + // maxInstances: 1, + browserName: 'chrome', + 'goog:chromeOptions': { + // Disable headless mode if screen recordings are enabled: + args: ['--headless', '--window-size=1440,900'] + } + } + ], + logLevel: 'warn', + reporters: ['spec'], + framework: 'mocha', + mochaOpts: { + timeout: 60000 + }, + specs: ['test/specs/**/*.js'], + maximizeWindow: true, + screenshots: { + saveOnFail: true + }, + videos: { + enabled: false, + resolution: '1440x900', + startDelay: 500, + stopDelay: 500 + }, + assetsDir: '/home/webdriver/assets/', + baseUrl: 'http://example' +} + +exports.config = Object.assign({}, require('../hooks'), config) |