()
| 914 | } |
| 915 | |
| 916 | schedulePendingSubtests() { |
| 917 | if (this.pendingSubtestsScheduled) { |
| 918 | return; |
| 919 | } |
| 920 | |
| 921 | this.pendingSubtestsScheduled = true; |
| 922 | queueMicrotask(() => { |
| 923 | this.pendingSubtestsScheduled = false; |
| 924 | this.processPendingSubtests(); |
| 925 | }); |
| 926 | } |
| 927 | |
| 928 | /** |
| 929 | * Ensure each subtest has a contiguous, per-parent reporting order. |
no test coverage detected