Optional version of ITestSchedulerOptions which is provided as input.
Bails out as soon as enough time is spent in doing some computation
Used for writing tests.
import {testScheduler} from 'ts-scheduler/test' const scheduler = testScheduler() scheduler.asap({execute: () => console.log('Hi!')}) // Doesn't execute until run() is called scheduler.run()
Generated using TypeDoc
Optional version of ITestSchedulerOptions which is provided as input.