disable LL tests on travis CI

This commit is contained in:
Bruno Windels 2018-09-18 16:50:33 +02:00
parent d1d886508b
commit cf397efed5
3 changed files with 15 additions and 5 deletions

View file

@ -26,6 +26,7 @@ program
.option('--windowed', "dont run tests headless", false)
.option('--slow-mo', "run tests slower to follow whats going on", false)
.option('--dev-tools', "open chrome devtools in browser window", false)
.option('--travis', "running on travis CI, disable tests known to break on Ubuntu 14.04 LTS", false)
.parse(process.argv);
const hsUrl = 'http://localhost:5005';
@ -58,7 +59,7 @@ async function runTests() {
let failure = false;
try {
await scenario(createSession, restCreator);
await scenario(createSession, restCreator, program.travis);
} catch(err) {
failure = true;
console.log('failure: ', err);