mirror of
https://github.com/denoland/deno.git
synced 2025-02-11 08:25:20 -05:00
12 lines
188 B
TypeScript
12 lines
188 B
TypeScript
![]() |
import { addOne } from "./mod.ts";
|
||
|
|
||
|
Deno.test("addOne", () => {
|
||
|
if (addOne(1) !== 2) {
|
||
|
throw new Error("failed");
|
||
|
}
|
||
|
});
|
||
|
|
||
|
Deno.test("fail", () => {
|
||
|
throw new Error("failed");
|
||
|
});
|