diff options
author | Casper Beyer <caspervonb@pm.me> | 2021-06-29 21:40:16 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-29 15:40:16 +0200 |
commit | a0c0daac24c496e49e7c0abaae12f34723785a7d (patch) | |
tree | adc16fea74b191f2ddcfe86eaa425c4e1a5e2f3d /cli/tests/test/pass.ts | |
parent | 96d05829002ef065b8fc84fe70de062cff0e95b3 (diff) |
test(cli): harden test runner tests (#11166)
Diffstat (limited to 'cli/tests/test/pass.ts')
-rw-r--r-- | cli/tests/test/pass.ts | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/cli/tests/test/pass.ts b/cli/tests/test/pass.ts new file mode 100644 index 000000000..288cc7c83 --- /dev/null +++ b/cli/tests/test/pass.ts @@ -0,0 +1,10 @@ +Deno.test("test 0", () => {}); +Deno.test("test 1", () => {}); +Deno.test("test 2", () => {}); +Deno.test("test 3", () => {}); +Deno.test("test 4", () => {}); +Deno.test("test 5", () => {}); +Deno.test("test 6", () => {}); +Deno.test("test 7", () => {}); +Deno.test("test 8", () => {}); +Deno.test("test 9", () => {}); |