cleaned up integration test flow
This commit is contained in:
parent
23d629b80b
commit
76de2b29a5
20 changed files with 123 additions and 1798 deletions
18
test/wdio.circleci.conf.js
Normal file
18
test/wdio.circleci.conf.js
Normal file
|
@ -0,0 +1,18 @@
|
|||
// eslint-disable-next-line node/no-extraneous-require
|
||||
const ip = require('ip');
|
||||
const path = require('path');
|
||||
const common = require('./wdio.common.conf');
|
||||
|
||||
/*/
|
||||
|
||||
Config for running selenium from a circleci docker container against localhost
|
||||
|
||||
/*/
|
||||
|
||||
exports.config = Object.assign({}, common.config, {
|
||||
baseUrl: `http://${ip.address()}:8000`,
|
||||
exclude: [path.join(__dirname, './integration/download-tests.js')],
|
||||
maxInstances: 1,
|
||||
bail: 1,
|
||||
services: [require('./testServer')]
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue