Skip to content

Commit

Permalink
v0.0.39 changes
Browse files Browse the repository at this point in the history
  • Loading branch information
RobAndrewHurst committed Nov 13, 2024
1 parent 891c603 commit 46894fe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/runners/nodeRunner.js
Original file line number Diff line number Diff line change
Expand Up @@ -68,10 +68,10 @@ export async function runTests(testDirectory, returnResults = false, codiConfig
}

if (state.failedTests > 0) {
console.log(chalk.red('\nSome tests failed.'));
console.log(chalk.red(`\n${state.failedTests} tests failed.`));
process.exit(1);
} else {
console.log(chalk.green('\nAll tests passed.'));
console.log(chalk.green(`\n${state.passedTests} tests passed.`));
process.exit(0);
}
}
Expand Down

0 comments on commit 46894fe

Please sign in to comment.