aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/blueimp/jquery-file-upload/wdio/conf/internet-explorer.js
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2020-05-07 15:23:30 +0000
committerMario <mario@mariovavti.com>2020-05-07 15:23:30 +0000
commitc76ff4249ec0f88832a9ce6c966a2fd326482197 (patch)
tree6a7cf372eafb957002fa2c0a969a61dd5a084bf2 /vendor/blueimp/jquery-file-upload/wdio/conf/internet-explorer.js
parentdbfe748d274f6843fc91a3071df7be45c4ab5b00 (diff)
downloadvolse-hubzilla-c76ff4249ec0f88832a9ce6c966a2fd326482197.tar.gz
volse-hubzilla-c76ff4249ec0f88832a9ce6c966a2fd326482197.tar.bz2
volse-hubzilla-c76ff4249ec0f88832a9ce6c966a2fd326482197.zip
add new files
Diffstat (limited to 'vendor/blueimp/jquery-file-upload/wdio/conf/internet-explorer.js')
-rw-r--r--vendor/blueimp/jquery-file-upload/wdio/conf/internet-explorer.js24
1 files changed, 24 insertions, 0 deletions
diff --git a/vendor/blueimp/jquery-file-upload/wdio/conf/internet-explorer.js b/vendor/blueimp/jquery-file-upload/wdio/conf/internet-explorer.js
new file mode 100644
index 000000000..223a50190
--- /dev/null
+++ b/vendor/blueimp/jquery-file-upload/wdio/conf/internet-explorer.js
@@ -0,0 +1,24 @@
+'use strict'
+
+/* eslint-disable jsdoc/valid-types */
+/** @type WebdriverIO.Config */
+const config = {
+ hostname: process.env.WINDOWS_HOST || 'host.docker.internal',
+ port: 4445,
+ capabilities: [
+ {
+ // IEDriverServer supports no parallel sessions:
+ maxInstances: 1,
+ browserName: 'internet explorer'
+ }
+ ],
+ videos: {
+ enabled: true,
+ inputFormat: 'mjpeg',
+ startDelay: 500,
+ stopDelay: 500
+ },
+ assetsDir: process.env.WINDOWS_ASSETS_DIR
+}
+
+exports.config = Object.assign({}, require('./chrome').config, config)