* Advances the taskQueue with an increased depth
()
| 2602 | * Advances the taskQueue with an increased depth |
| 2603 | */ |
| 2604 | function advanceTaskQueue() { |
| 2605 | var start = now(); |
| 2606 | config.depth = (config.depth || 0) + 1; |
| 2607 | |
| 2608 | processTaskQueue(start); |
| 2609 | |
| 2610 | config.depth--; |
| 2611 | } |
| 2612 | |
| 2613 | /** |
| 2614 | * Process the first task on the taskQueue as a promise. |
no test coverage detected