1
0
mirror of https://gitlab.com/timvisee/send.git synced 2024-09-21 16:41:32 +02:00
send/test/wdio.docker.conf.js

23 lines
494 B
JavaScript
Raw Normal View History

2018-10-02 22:15:02 +02:00
const ip = require('ip');
const common = require('./wdio.common.conf');
/*/
Config for running selenium in a new docker container against localhost
/*/
exports.config = Object.assign({}, common.config, {
baseUrl: `http://${ip.address()}:8000`,
maxInstances: 1,
services: ['docker', require('./testServer')],
dockerOptions: {
image: 'selenium/standalone-firefox',
healthCheck: 'http://localhost:4444',
options: {
p: ['4444:4444'],
shmSize: '2g'
}
}
});