mirror of
https://github.com/denoland/deno.git
synced 2024-12-01 16:51:13 -05:00
6 lines
162 B
TypeScript
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);
|
|
});
|