mirror of
https://github.com/denoland/deno.git
synced 2024-12-11 10:07:54 -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");
|
||
|
});
|