()
| 471 | |
| 472 | InspectorTest.runTestSuite = function(testSuite) { |
| 473 | function nextTest() { |
| 474 | if (!testSuite.length) { |
| 475 | InspectorTest.completeTest(); |
| 476 | return; |
| 477 | } |
| 478 | var fun = testSuite.shift(); |
| 479 | InspectorTest.log("\nRunning test: " + fun.name); |
| 480 | fun(nextTest); |
| 481 | } |
| 482 | nextTest(); |
| 483 | } |
| 484 |
no test coverage detected