summaryrefslogtreecommitdiff
path: root/cli/tests/testdata/coverage/branch_expected.out
blob: 630ea93b273a6a1223cfd039889c3e1f1caf2ff5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
cover [WILDCARD]/coverage/branch.ts ... 28.571% (4/14)
   4 |   } else {
   5 |     return false;
   6 |   }
-----|-----
   9 | export function unused(condition: boolean): boolean {
  10 |   if (condition) {
  11 |     return false;
  12 |   } else {
  13 |     return true;
  14 |   }
  15 | }