1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-11 18:17:48 -05:00
denoland-deno/cli/tests/testdata/package_json/basic/main.test.ts

8 lines
128 B
TypeScript
Raw Normal View History

import { add } from "./main.ts";
Deno.test("should add", () => {
if (add(1, 2) !== 3) {
throw new Error("Fail");
}
});