Coverage

93%
29

/Users/dylan/gulp-coverage/test.js

100%
15
LineHitsSource
01module.exports = function () {
11 var i, matcher,
21 retVal = 0;
31
41 for (i = 0; i < 10; i++) {
51 matcher = Math.floor(Math.random()*10+0.5);
61 if (matcher === i) {
71 retVal += 1;
81 retVal += 1;
91 } else {
101 retVal = retVal;
111 }
121 }
131 return retVal;
141};

/Users/dylan/gulp-coverage/test2.js

85%
14
LineHitsSource
01module.exports = function () {
11 var i,
21 retVal = 0;
31
41 for (i = 0; i < 10; i++) {
51 if (false) {
60 retVal/0;
70 retVal += 1;
81 } else {
91 retVal = retVal;
101 }
111 }
121 return retVal;
131};