mirror of
https://github.com/denoland/deno.git
synced 2024-11-28 16:20:57 -05:00
8 lines
122 B
TypeScript
8 lines
122 B
TypeScript
|
import { add } from "./mod.ts";
|
||
|
|
||
|
Deno.test("add", () => {
|
||
|
if (add(1, 2) !== 3) {
|
||
|
throw new Error("failed");
|
||
|
}
|
||
|
});
|