(cb: Function)
| 425 | |
| 426 | it('bluebird promise fromCallback method should be in zone', (done) => { |
| 427 | const resolver = (cb: Function) => { |
| 428 | setTimeout(() => { |
| 429 | cb(null, 'test'); |
| 430 | }, 10); |
| 431 | }; |
| 432 | |
| 433 | zone.run(() => { |
| 434 | BluebirdPromise.fromCallback(resolver).then((r: string) => { |
no test coverage detected
searching dependent graphs…