mirror of
https://github.com/oven-sh/bun
synced 2026-02-09 18:38:55 +00:00
26 lines
371 B
JavaScript
26 lines
371 B
JavaScript
import * as assert from "./node_modules/assert";
|
|
|
|
export const {
|
|
AssertionError,
|
|
CallTracker,
|
|
deepEqual,
|
|
deepStrictEqual,
|
|
doesNotMatch,
|
|
doesNotReject,
|
|
doesNotThrow,
|
|
equal,
|
|
fail,
|
|
ifError,
|
|
match,
|
|
notDeepEqual,
|
|
notDeepStrictEqual,
|
|
notEqual,
|
|
notStrictEqual,
|
|
ok,
|
|
rejects,
|
|
strict,
|
|
strictEqual,
|
|
throws,
|
|
} = assert;
|
|
export default assert;
|