diff options
Diffstat (limited to 'tests/testdata/coverage/no_tests_included/foo.test.ts')
-rw-r--r-- | tests/testdata/coverage/no_tests_included/foo.test.ts | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/testdata/coverage/no_tests_included/foo.test.ts b/tests/testdata/coverage/no_tests_included/foo.test.ts new file mode 100644 index 000000000..46dd037be --- /dev/null +++ b/tests/testdata/coverage/no_tests_included/foo.test.ts @@ -0,0 +1,6 @@ +import { addNumbers } from "./foo.ts"; +import { assertEquals } from "../../../../test_util/std/assert/mod.ts"; + +Deno.test("addNumbers works", () => { + assertEquals(addNumbers(1, 2), 3); +}); |