mirror of
https://github.com/denoland/deno.git
synced 2025-02-14 01:26:14 -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);
|
||
|
});
|