summaryrefslogtreecommitdiff
path: root/cli/tests/testdata/test/non_error_thrown.ts
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tests/testdata/test/non_error_thrown.ts')
-rw-r--r--cli/tests/testdata/test/non_error_thrown.ts23
1 files changed, 0 insertions, 23 deletions
diff --git a/cli/tests/testdata/test/non_error_thrown.ts b/cli/tests/testdata/test/non_error_thrown.ts
deleted file mode 100644
index 85dc8d179..000000000
--- a/cli/tests/testdata/test/non_error_thrown.ts
+++ /dev/null
@@ -1,23 +0,0 @@
-Deno.test("foo", () => {
- throw undefined;
-});
-
-Deno.test("bar", () => {
- throw null;
-});
-
-Deno.test("baz", () => {
- throw 123;
-});
-
-Deno.test("qux", () => {
- throw "Hello, world!";
-});
-
-Deno.test("quux", () => {
- throw [1, 2, 3];
-});
-
-Deno.test("quuz", () => {
- throw { a: "Hello, world!", b: [1, 2, 3] };
-});