marinea/server/main_test.ts

7 lines
180 B
TypeScript
Raw Permalink Normal View History

2023-04-01 16:51:48 +00:00
import { assertEquals } from "https://deno.land/std@0.181.0/testing/asserts.ts";
import { add } from "./main.ts";
Deno.test(function addTest() {
assertEquals(add(2, 3), 5);
});