mirror of
https://github.com/denoland/deno.git
synced 2024-11-05 09:04:41 -05:00
8 lines
128 B
TypeScript
8 lines
128 B
TypeScript
|
import { add } from "./main.ts";
|
||
|
|
||
|
Deno.test("should add", () => {
|
||
|
if (add(1, 2) !== 3) {
|
||
|
throw new Error("Fail");
|
||
|
}
|
||
|
});
|