1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-01 16:51:13 -05:00
denoland-deno/cli/tools/init/templates/main_test.ts

6 lines
162 B
TypeScript

import { assertEquals } from "{CURRENT_STD_URL}assert/mod.ts";
import { add } from "./main.ts";
Deno.test(function addTest() {
assertEquals(add(2, 3), 5);
});