diff --git a/.travis.yml b/.travis.yml index 751243fbe..a37e034e9 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,6 +13,7 @@ script: - npm run linter - npm run packager - npm run tester +- npm run test-with-coverage - npm run extractor - npm run vscoder - npm run glossary:keymaker diff --git a/scripts/tdd.js b/scripts/tdd.js index e34d231a8..e8145e7a5 100644 --- a/scripts/tdd.js +++ b/scripts/tdd.js @@ -38,7 +38,7 @@ try { }); // Run tests if (util.isTravisCI()) { - childProcess.execSync('npm run test-with-coverage'); + process.exit(0); } else { childProcess.execSync('npm test');