* Gets the next test from the pool * @returns {String|null} test file path or null if no tests available
()
| 440 | * @returns {String|null} test file path or null if no tests available |
| 441 | */ |
| 442 | getNextTest() { |
| 443 | // Lazy initialization of test pool on first call |
| 444 | if (!this.testPoolInitialized) { |
| 445 | this._initializeTestPool() |
| 446 | } |
| 447 | |
| 448 | return this.testPool.shift() |
| 449 | } |
| 450 | |
| 451 | /** |
| 452 | * @param {Number} numberOfWorkers |
no test coverage detected