1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-23 15:16:54 -05:00
denoland-deno/cli/tests/testdata/coverage/no_internal_code_test.ts
2023-09-11 13:53:42 +00:00

7 lines
139 B
TypeScript

const add = (a: number, b: number) => a + b;
Deno.test(function addTest() {
if (add(2, 3) !== 5) {
throw new Error("fail");
}
});