1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-12 02:27:46 -05:00
denoland-deno/cli/tests/testdata/lockfile/basic/main.test.ts
2023-03-16 11:56:40 +09:00

8 lines
121 B
TypeScript

import "./main.ts";
Deno.test("test", () => {
const testing = 1 + 2;
if (testing !== 3) {
throw "FAIL";
}
});