1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-23 15:16:54 -05:00
denoland-deno/std/node/assert.ts
2020-08-18 14:15:59 -04:00

15 lines
378 B
TypeScript

import {
assertEquals,
assertNotEquals,
assertStrictEquals,
assertMatch,
assertThrows,
} from "../testing/asserts.ts";
export { assert, fail } from "../testing/asserts.ts";
export const equal = assertEquals;
export const notEqual = assertNotEquals;
export const strictEqual = assertStrictEquals;
export const match = assertMatch;
export const throws = assertThrows;