codi-test-framework
Advanced tools
Comparing version 0.0.24 to 0.0.25
{ | ||
"name": "codi-test-framework", | ||
"version": "0.0.24", | ||
"version": "0.0.25", | ||
"description": "A simple test framework for JavaScript", | ||
@@ -22,4 +22,5 @@ "main": "src/testRunner.js", | ||
"dependencies": { | ||
"chalk": "^5.3.0" | ||
"chalk": "^5.3.0", | ||
"figlet": "^1.7.0" | ||
} | ||
} |
import fs from 'fs'; | ||
import path from 'path'; | ||
import chalk from 'chalk'; | ||
import figlet from 'figlet'; | ||
import assertions from './assertions/_assertions.js'; | ||
@@ -16,3 +17,3 @@ | ||
let testResults = []; | ||
let version = 'v0.0.24'; | ||
let version = 'v0.0.25'; | ||
@@ -145,3 +146,3 @@ export async function describe(description, callback) { | ||
if (returnVersion) { | ||
console.log(chalk.blue(version)); | ||
console.log(chalk.blue(`🐶 Woof! Woof!: ${version}`)); | ||
process.exit(0); | ||
@@ -148,0 +149,0 @@ } |
16261
231
2
+ Addedfiglet@^1.7.0
+ Addedfiglet@1.8.0(transitive)