Skip to content

Commit

Permalink
feat(assert): export all node assert functions
Browse files Browse the repository at this point in the history
  • Loading branch information
ianwremmel committed Nov 26, 2023
1 parent 3643764 commit 1fd8587
Showing 1 changed file with 20 additions and 1 deletion.
21 changes: 20 additions & 1 deletion packages/@code-like-a-carpenter/assert/src/assert.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,23 @@ export function assert(
}
}

export {fail, strictEqual, notStrictEqual} from 'assert';
export {
deepEqual,
deepStrictEqual,
doesNotMatch,
doesNotReject,
doesNotThrow,
equal,
fail,
ifError,
match,
notDeepEqual,
notDeepStrictEqual,
notEqual,
notStrictEqual,
ok,
rejects,
strictEqual,
throws,
AssertionError,
} from 'assert';

0 comments on commit 1fd8587

Please sign in to comment.