aboutsummaryrefslogtreecommitdiff
path: root/test/bun.js
diff options
context:
space:
mode:
authorGravatar Ashcon Partovi <ashcon@partovi.net> 2023-03-14 12:19:24 -0700
committerGravatar Ashcon Partovi <ashcon@partovi.net> 2023-03-14 12:19:24 -0700
commitd1d2d842d5c8a98837214b590b96e6c686536776 (patch)
treeeedfc82fe1c62116315b060a30e7c5cfc29265c8 /test/bun.js
parent5d89efedec72a0ae804c6d5849a19b0b8a249daf (diff)
downloadbun-d1d2d842d5c8a98837214b590b96e6c686536776.tar.gz
bun-d1d2d842d5c8a98837214b590b96e6c686536776.tar.zst
bun-d1d2d842d5c8a98837214b590b96e6c686536776.zip
Move tobeInstanceOf() tests to expect.test.ts
Diffstat (limited to 'test/bun.js')
-rw-r--r--test/bun.js/bun-test/matchers.test.ts11
1 files changed, 0 insertions, 11 deletions
diff --git a/test/bun.js/bun-test/matchers.test.ts b/test/bun.js/bun-test/matchers.test.ts
deleted file mode 100644
index 8322c55a6..000000000
--- a/test/bun.js/bun-test/matchers.test.ts
+++ /dev/null
@@ -1,11 +0,0 @@
-import { describe, expect, test } from "bun:test";
-
-describe("different kinds of matchers", () => {
- test("toBeInstanceOf", () => {
- expect({}).toBeInstanceOf(Object);
- expect(new String("test")).toBeInstanceOf(String);
- expect(() => {}).toBeInstanceOf(Function);
- class A {}
- expect(new A()).toBeInstanceOf(A);
- });
-}); \ No newline at end of file