diff options
author | Levente Kurusa <lkurusa@kernelstuff.org> | 2023-04-19 23:30:52 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-19 23:30:52 +0200 |
commit | c33675588117aad0b8fabfa5816676d95ba8067e (patch) | |
tree | 49cfb08f08a1345b0381f347a393cb397a9c8ce5 /cli/tests/testdata/coverage/no_tests_included/foo.test.js | |
parent | a8ca09f78a26c16ed07bcffd23f1f9f486fa04e4 (diff) |
fix(test/coverage): exclude test files (#18748)
Fixes: #18454
Diffstat (limited to 'cli/tests/testdata/coverage/no_tests_included/foo.test.js')
-rw-r--r-- | cli/tests/testdata/coverage/no_tests_included/foo.test.js | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/cli/tests/testdata/coverage/no_tests_included/foo.test.js b/cli/tests/testdata/coverage/no_tests_included/foo.test.js new file mode 100644 index 000000000..06b13d743 --- /dev/null +++ b/cli/tests/testdata/coverage/no_tests_included/foo.test.js @@ -0,0 +1,6 @@ +import { addNumbers } from "./foo.ts"; +import { assertEquals } from "https://deno.land/std@0.183.0/testing/asserts.ts"; + +Deno.test("addNumbers works", () => { + assertEquals(addNumbers(1, 2), 3); +}); |