summaryrefslogtreecommitdiff
path: root/cli/tests/testdata/coverage/no_tests_included/foo.test.js
blob: 06b13d743bbaca865ba823e655de318852a37f72 (plain)
1
2
3
4
5
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);
});