1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-22 15:06:54 -05:00
denoland-deno/tests/testdata/coverage/no_internal_code_test.ts

8 lines
139 B
TypeScript
Raw Normal View History

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