blob: f1499a626f33737729670142f7893a3e6c7123c9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
import { addOne } from "./mod.ts";
Deno.test("addOne", () => {
if (addOne(1) !== 2) {
throw new Error("failed");
}
});
Deno.test("fail", () => {
throw new Error("failed");
});
|