codi-test-framework
Advanced tools
Comparing version 0.0.38 to 0.0.39
{ | ||
"name": "codi-test-framework", | ||
"version": "v0.0.38", | ||
"version": "v0.0.39", | ||
"description": "A simple test framework for JavaScript", | ||
@@ -5,0 +5,0 @@ "main": "src/testRunner.js", |
@@ -71,6 +71,6 @@ import fs from 'fs'; | ||
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); | ||
@@ -77,0 +77,0 @@ } |
@@ -31,3 +31,3 @@ import chalk from 'chalk'; | ||
export const version = 'v0.0.38'; | ||
export const version = 'v0.0.39'; | ||
@@ -34,0 +34,0 @@ /** |
Manifest confusion
Supply chain riskThis package has inconsistent metadata. This could be malicious or caused by an error when publishing the package.
Found 1 instance in 1 package
Manifest confusion
Supply chain riskThis package has inconsistent metadata. This could be malicious or caused by an error when publishing the package.
Found 1 instance in 1 package
26876