(tDetails: TDeferBlockDetails)
| 146 | * block in completed state. |
| 147 | */ |
| 148 | export function assertDeferredDependenciesLoaded(tDetails: TDeferBlockDetails) { |
| 149 | assertEqual( |
| 150 | tDetails.loadingState, |
| 151 | DeferDependenciesLoadingState.COMPLETE, |
| 152 | 'Expecting all deferred dependencies to be loaded.', |
| 153 | ); |
| 154 | } |
| 155 | |
| 156 | /** |
| 157 | * Determines if a given value matches the expected structure of a defer block |
no test coverage detected
searching dependent graphs…