mirror of
https://github.com/denoland/deno.git
synced 2024-11-23 15:16:54 -05:00
16 lines
378 B
TypeScript
16 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;
|