(callback: () => any)
| 146 | |
| 147 | it('should run new macro tasks created by timer callback', fakeAsync(() => { |
| 148 | function nestedTimer(callback: () => any): void { |
| 149 | setTimeout(() => setTimeout(() => callback())); |
| 150 | } |
| 151 | const callback = jasmine.createSpy('callback'); |
| 152 | nestedTimer(callback); |
| 153 | expect(callback).not.toHaveBeenCalled(); |
no test coverage detected
searching dependent graphs…