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