UNPKG

@testim/testim-cli

Version:

Command line interface for running Testing on you CI

10 lines (8 loc) 276 B
var MockDisposable = Rx.MockDisposable = function (scheduler) { this.scheduler = scheduler; this.disposes = []; this.disposes.push(this.scheduler.clock); }; MockDisposable.prototype.dispose = function () { this.disposes.push(this.scheduler.clock); };