UNPKG

@testim/testim-cli

Version:

Command line interface for running Testing on you CI

6 lines (5 loc) 304 B
/** Gets a scheduler that schedules work immediately on the current thread. */ var immediateScheduler = Scheduler.immediate = (function () { function scheduleNow(state, action) { return action(this, state); } return new Scheduler(defaultNow, scheduleNow, notSupported, notSupported); }());