(
private finishCallback: Function,
private failCallback: Function,
namePrefix: string,
)
| 30 | supportWaitUnresolvedChainedPromise = false; |
| 31 | |
| 32 | constructor( |
| 33 | private finishCallback: Function, |
| 34 | private failCallback: Function, |
| 35 | namePrefix: string, |
| 36 | ) { |
| 37 | this.name = 'asyncTestZone for ' + namePrefix; |
| 38 | this.properties = {'AsyncTestZoneSpec': this}; |
| 39 | this.supportWaitUnresolvedChainedPromise = |
| 40 | __global[__symbol__('supportWaitUnResolvedChainedPromise')] === true; |
| 41 | } |
| 42 | |
| 43 | isUnresolvedChainedPromisePending() { |
| 44 | return this.unresolvedChainedPromiseCount > 0; |
nothing calls this directly
no test coverage detected