mirror of
https://github.com/denoland/deno.git
synced 2024-11-02 09:34:19 -04:00
7 lines
167 B
TypeScript
7 lines
167 B
TypeScript
|
import { assertEquals } from "{CURRENT_STD_URL}testing/asserts.ts";
|
||
|
import { add } from "./main.ts";
|
||
|
|
||
|
Deno.test(function addTest() {
|
||
|
assertEquals(add(2, 3), 5);
|
||
|
});
|