(cb: Function)
| 374 | |
| 375 | it('bluebird promise promisify method should be in zone and treated as microTask', (done) => { |
| 376 | const func = (cb: Function) => { |
| 377 | setTimeout(() => { |
| 378 | cb(null, 'test'); |
| 379 | }, 10); |
| 380 | }; |
| 381 | |
| 382 | const promiseFunc = BluebirdPromise.promisify(func); |
| 383 | zone.run(() => { |
nothing calls this directly
no test coverage detected
searching dependent graphs…