Skip to content

Commit

Permalink
Fix import and bump
Browse files Browse the repository at this point in the history
  • Loading branch information
RobAndrewHurst committed Sep 12, 2024
1 parent a100739 commit bdb7545
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "codi-test-framework",
"version": "0.0.31",
"version": "0.0.32",
"description": "A simple test framework for JavaScript",
"main": "src/testRunner.js",
"type": "module",
Expand Down
1 change: 1 addition & 0 deletions src/assertions/_assertions.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import { assertNotEqual } from "./assertNotEqual.js";
import { assertTrue } from "./assertTrue.js";
import { assertFalse } from "./assertFalse.js";
import { assertThrows } from "./assertThrows.js";
import { assertNoDuplicates } from "./assertNoDuplicates.js";


export default {
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion src/testRunner.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export const assertNoDuplicates = assertions.assertNoDuplicates;
let passedTests = 0;
let failedTests = 0;
let testResults = [];
let version = 'v0.0.31';
let version = 'v0.0.32';

export async function describe(description, callback) {
console.log(chalk.bold.cyan(`\n${description}`));
Expand Down

0 comments on commit bdb7545

Please sign in to comment.