summaryrefslogtreecommitdiff
path: root/tests/testdata/coverage/no_internal_code_test.ts
blob: 0cf46d2525d05076d5a4df88bab5c231cd78d850 (plain)
1
2
3
4
5
6
7
const add = (a: number, b: number) => a + b;

Deno.test(function addTest() {
  if (add(2, 3) !== 5) {
    throw new Error("fail");
  }
});