Print number of tests run

This commit is contained in:
Radon Rosborough 2020-08-23 10:37:34 -06:00
parent 0dc85743d6
commit 7321737cd4
1 changed files with 1 additions and 0 deletions

View File

@ -637,6 +637,7 @@ async function main() {
console.error("no tests selected");
process.exit(1);
}
console.error(`Running ${tests.length} test${tests.length !== 1 ? "s" : ""}`);
const lintSeen = new Set();
let lintPassed = new Set();
let lintFailed = new Map();