All files / ignore ignore.js

70.58% Statements 12/17
50% Branches 4/8
33.33% Functions 1/3
70.58% Lines 12/17

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 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 471x 1x 1x 1x   1x     1x           1x         1x             1x           1x 1x         1x                
require('./v8-ignore-next.js');
require('./v8-ignore-return.js');
require('./v8-ignore-start-stop.js');
require('./node-coverage.js');
 
const platform = 'wind32';
 
/* v8 ignore next */
Iif (platform === 'darwin') {
    console.log('hello darwin');
// v8 ignore next
}
 
/* v8 ignore next 3 */
Iif (platform === 'linux') {
    console.log('hello linux');
}
 
 
const os = platform === 'wind32' ? 'Windows' /* v8 ignore next */ : 'Other';
 
/* v8 ignore start */ function uncovered(v) {
    console.log(os);
}/* v8 ignore stop */
 
 
const neverMind = /* v8 ignore start */ () => {
    uncovered();
};
 
/* v8 ignore stop */
 
const ignore = (v) => {
    Iif (v) {
        neverMind();
    }
};
 
module.exports = {
    ignore,
    neverMind,
    uncovered,
    os,
    platform
};