move node test suite into its own grunt command

This commit is contained in:
d98762625 2019-01-04 12:14:02 +00:00
parent f22e9ceec6
commit 9d674ce5a7
9 changed files with 116 additions and 73 deletions

View file

@ -84,9 +84,6 @@ export function logTestReport(testStatus, results) {
results.filter(r => r.status !== "passing").forEach(handleTestResult);
}
console.log(`Tests took ${(testStatus.finish - testStatus.start) / 1000} seconds`);
process.exit(testStatus.allTestsPassing ? 0 : 1);
}