Skip to content

Commit

Permalink
v0.0.36 bump
Browse files Browse the repository at this point in the history
  • Loading branch information
RobAndrewHurst committed Nov 12, 2024
1 parent 79189bd commit 5ce7cf9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 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": "v0.0.35",
"version": "v0.0.36",
"description": "A simple test framework for JavaScript",
"main": "src/testRunner.js",
"type": "module",
Expand Down
2 changes: 1 addition & 1 deletion src/testRunner.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export const assertFalse = assertions.assertFalse;
export const assertThrows = assertions.assertThrows;
export const assertNoDuplicates = assertions.assertNoDuplicates;

export const version = 'v0.0.35';
export const version = 'v0.0.36';

/**
* CLI entry point for running tests
Expand Down
4 changes: 2 additions & 2 deletions tests/example.test.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ await describe('I am an Example Test Suite', () => {
await describe('Running testFunction', async () => {
function testFunction() {
it('First', () => {
assertEqual(1, 1, 'Expected 1 to equal 1');
assertEqual(1, 2, 'Expected 1 to equal 1');
});
}
await runTestFunction(testFunction);
await runTestFunction(testFunction, { quiet: true });
});

0 comments on commit 5ce7cf9

Please sign in to comment.