(module)
| 3668 | } |
| 3669 | |
| 3670 | function numberOfUnskippedTests(module) { |
| 3671 | return collectTests(module).filter(function (test) { |
| 3672 | return !test.skip; |
| 3673 | }).length; |
| 3674 | } |
| 3675 | |
| 3676 | function notifyTestsRan(module, skipped) { |
| 3677 | module.testsRun++; |
no test coverage detected