mirror of
https://github.com/denoland/deno.git
synced 2024-12-13 02:52:54 -05:00
7 lines
136 B
TypeScript
7 lines
136 B
TypeScript
|
import { add } from "./mod.ts";
|
||
|
import { assertEquals } from "@std/assert";
|
||
|
|
||
|
Deno.test("add", () => {
|
||
|
assertEquals(add(1, 2), 3);
|
||
|
});
|