mirror of
https://gitlab.com/timvisee/send.git
synced 2025-12-09 19:55:34 +00:00
Added webdriverio integration tests
This commit is contained in:
committed by
Danny Coates
parent
bd02b7db8e
commit
23d629b80b
15
test/wdio.local.conf.js
Normal file
15
test/wdio.local.conf.js
Normal file
@@ -0,0 +1,15 @@
|
||||
const ip = require('ip');
|
||||
const common = require('./wdio.common.conf');
|
||||
|
||||
/*/
|
||||
|
||||
Config for running selenium against localhost
|
||||
|
||||
/*/
|
||||
|
||||
exports.config = Object.assign({}, common.config, {
|
||||
baseUrl: `http://${ip.address()}:8000`,
|
||||
maxInstances: 1,
|
||||
bail: 1,
|
||||
services: [require('./testServer')]
|
||||
});
|
||||
Reference in New Issue
Block a user