Fix coverage

This commit is contained in:
Angelos Chalaris
2018-11-10 16:10:52 +02:00
parent 8e336366eb
commit 278822912a
2 changed files with 2 additions and 1 deletions

View File

@ -13,6 +13,7 @@ script:
- npm run linter - npm run linter
- npm run packager - npm run packager
- npm run tester - npm run tester
- npm run test-with-coverage
- npm run extractor - npm run extractor
- npm run vscoder - npm run vscoder
- npm run glossary:keymaker - npm run glossary:keymaker

View File

@ -38,7 +38,7 @@ try {
}); });
// Run tests // Run tests
if (util.isTravisCI()) { if (util.isTravisCI()) {
childProcess.execSync('npm run test-with-coverage'); process.exit(0);
} }
else { else {
childProcess.execSync('npm test'); childProcess.execSync('npm test');