diff options
Diffstat (limited to 'tests/registry/jsr/@std/assert/1.0.0/assert_equals.ts')
-rw-r--r-- | tests/registry/jsr/@std/assert/1.0.0/assert_equals.ts | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/registry/jsr/@std/assert/1.0.0/assert_equals.ts b/tests/registry/jsr/@std/assert/1.0.0/assert_equals.ts new file mode 100644 index 000000000..bd58194d0 --- /dev/null +++ b/tests/registry/jsr/@std/assert/1.0.0/assert_equals.ts @@ -0,0 +1,9 @@ +// deno-lint-ignore-file +export function assertEquals<T>( + actual: T, + expected: T, + msg?: string, + options: { formatter?: (value: unknown) => string } = {}, +) { + return true; +} |