(options)
| 137 | } |
| 138 | |
| 139 | function runTest(options) { |
| 140 | const stopwatch = new HrStopwatch(); |
| 141 | stopwatch.start(); |
| 142 | return Promise.resolve(options) |
| 143 | .then(execute) |
| 144 | .then(() => { |
| 145 | stopwatch.stop(); |
| 146 | console.log(`Time: ${stopwatch}`); |
| 147 | return stopwatch.span; |
| 148 | }); |
| 149 | } |
| 150 | |
| 151 | function runTests(options) { |
| 152 | return function() { |
no outgoing calls
no test coverage detected
searching dependent graphs…