(id: number)
| 265 | return setTimeout(callback, options.timeout) as unknown as number; |
| 266 | }, |
| 267 | cancelOnIdle(id: number): void { |
| 268 | if (id !== -1) { |
| 269 | clearTimeout(id); |
| 270 | } |
| 271 | }, |
| 272 | }; |
| 273 | |
| 274 | TestBed.configureTestingModule({ |
nothing calls this directly
no test coverage detected
searching dependent graphs…