summaryrefslogtreecommitdiff
path: root/cli/tests/testdata/coverage/no_tests_included/foo.test.mts
blob: 5d8ae9f27bbdb99dd9c307f05855810f13397500 (plain)
1
2
3
4
5
6
import { addNumbers } from './foo.ts';
import { assertEquals } from "../../../../../test_util/std/testing/asserts.ts";

Deno.test("addNumbers works", () => {
  assertEquals(addNumbers(1, 2), 3);
});