1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-25 15:29:32 -05:00
denoland-deno/tests/testdata/coverage/no_tests_included/foo.test.ts

7 lines
163 B
TypeScript
Raw Permalink Normal View History

import { addNumbers } from "./foo.ts";
import { assertEquals } from "@std/assert";
Deno.test("addNumbers works", () => {
assertEquals(addNumbers(1, 2), 3);
});