(callback: () => any)
| 161 | |
| 162 | it('should default to processNewMacroTasksSynchronously if providing other flags', () => { |
| 163 | function nestedTimer(callback: () => any): void { |
| 164 | setTimeout(() => setTimeout(() => callback())); |
| 165 | } |
| 166 | fakeAsyncTestZone.run(() => { |
| 167 | const callback = jasmine.createSpy('callback'); |
| 168 | nestedTimer(callback); |
no test coverage detected
searching dependent graphs…