All files / ignore node-coverage.js

50% Statements 3/6
50% Branches 3/6
100% Functions 0/0
60% Lines 3/5

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 22 23 24          1x                   1x       1x        
// test native node:coverage ignore
 
let anAlwaysFalseCondition;
 
/* node:coverage disable */
Iif (anAlwaysFalseCondition) {
  // Code in this branch will never be executed, but the lines are ignored for
  // coverage purposes. All lines following the 'disable' comment are ignored
  // until a corresponding 'enable' comment is encountered.
  console.log('this is never executed');
}
/* node:coverage enable */ 
let not_ignored;
 
/* node:coverage ignore next */
Iif (anAlwaysFalseCondition) { console.log('this is never executed'); }
let not_ignored1;
 
/* node:coverage ignore next 3 */
Iif (anAlwaysFalseCondition) {
  console.log('this is never executed');
} 
let not_ignored2;