* Return whether the fixture is currently stable or has async tasks that have not been completed * yet.
()
| 222 | * yet. |
| 223 | */ |
| 224 | isStable(): boolean { |
| 225 | return !this.pendingTasks.hasPendingTasks; |
| 226 | } |
| 227 | |
| 228 | /** |
| 229 | * Get a promise that resolves when the fixture is stable. |