diff options
author | Mario <mario@mariovavti.com> | 2020-05-07 23:34:41 +0200 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2020-05-07 23:34:41 +0200 |
commit | ffd2faf8a09a870e8dbecb3ad168e0a9b25941d3 (patch) | |
tree | f46b9e78337d2d06aac665fb9546ad2aa95c5d7c /vendor/blueimp/jquery-file-upload/wdio/conf/chrome.js | |
parent | 64a8913385a68a9382da554c5cb51a7e71edd97b (diff) | |
download | volse-hubzilla-ffd2faf8a09a870e8dbecb3ad168e0a9b25941d3.tar.gz volse-hubzilla-ffd2faf8a09a870e8dbecb3ad168e0a9b25941d3.tar.bz2 volse-hubzilla-ffd2faf8a09a870e8dbecb3ad168e0a9b25941d3.zip |
Revert "add new files"
This reverts commit c76ff4249ec0f88832a9ce6c966a2fd326482197
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, 0 insertions, 40 deletions
diff --git a/vendor/blueimp/jquery-file-upload/wdio/conf/chrome.js b/vendor/blueimp/jquery-file-upload/wdio/conf/chrome.js deleted file mode 100644 index 270465e9c..000000000 --- a/vendor/blueimp/jquery-file-upload/wdio/conf/chrome.js +++ /dev/null @@ -1,40 +0,0 @@ -'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) |