All files coverage.ts

81.82% Statements 9/11
50% Branches 2/4
75% Functions 3/4
80% Lines 8/10

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 221x     2x 1x 1x             2x 1x       2x     1x  
export default class Coverage {
 
  //This function is tested and part of it is uncovered
  uncovered_if = (Ea = true) => {
    Eif (a == true) {
      return false
    } else {
      return true
    }
  }
 
  //This function will be fully covered
  fully_covered = () => {
    return true
  }
 
  //This function will not be tested by unit tests
  uncovered = () => {
    return true
  }
}