fix several configuration issue and linter

This commit is contained in:
JFH
2021-05-19 23:09:40 +02:00
parent ab6a2a3ca2
commit e71958e705
27 changed files with 214 additions and 336 deletions

View File

@@ -41,7 +41,7 @@ const runner = new Runner(
);
runner.stats = stats;
console.log('Mocha results:');
console.info('Mocha results:');
// eslint-disable-next-line no-new -- Has side effects
new MochaReporter(runner);
@@ -109,6 +109,6 @@ const lastRan = new Intl.DateTimeFormat('en-US', {
hour: 'numeric', minute: 'numeric'
}).format(endDate);
console.log(
console.info(
`Tests finished: ${lastRan}`
);