()
| 802 | ): Promise<T> { |
| 803 | return new Promise<T>((resolve, reject) => { |
| 804 | let unsubscribe: () => void = () => {}; |
| 805 | const timeout = setTimeout(() => { |
| 806 | unsubscribe(); |
| 807 | reject(new Error(`Timed out waiting for ${description}`)); |
no outgoing calls
no test coverage detected
searching dependent graphs…