All files closures.js

64.7% Statements 11/17
50% Branches 2/4
71.42% Functions 5/7
64.7% Lines 11/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    1x 1x 1x                           2x     2x 2x       2x   2x               2x         1x 1x    
function functionDefineAfterReturn(v) {
 
    Eif (!v) {
        functionAfterReturn();
        return functionAfterReturn();
    }
 
    missed1();
    missed2();
 
    return v;
 
    // comments
    function missed1() {
        console.log('missed1');
    }
 
    function functionAfterReturn(a) {
        Iif (a) {
            return a;
        }
        covered();
        [1, 2].forEach((n) => {
            // sub function
        });
 
        console.log('should be covered here');
 
        return 'Hello';
    }
 
    function missed2() {
        console.log('missed2');
    }
 
    function covered() {
        console.log('covered');
    }
}
 
 
module.exports = () => {
    functionDefineAfterReturn();
};