summaryrefslogtreecommitdiff
path: root/tests/registry/jsr/@std/assert/1.0.0/assert_equals.ts
diff options
context:
space:
mode:
authorDavid Sherret <dsherret@users.noreply.github.com>2024-07-14 13:22:43 -0400
committerGitHub <noreply@github.com>2024-07-14 13:22:43 -0400
commit8754a01d43782654c3d32945f6d58f7a40c01b69 (patch)
tree0a9efcd2e195a6194134b98373ddccdac9c8e991 /tests/registry/jsr/@std/assert/1.0.0/assert_equals.ts
parente0cfc9da39e1d05e6a95c89c41cff8ae34fcbd66 (diff)
fix(init): use bare specifier for `jsr:@std/assert` (#24581)
Closes #24580
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.ts9
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;
+}