Reactive-Extensions/RxJS

View on GitHub
ts/core/testing/mockdisposable.ts

Summary

Maintainability
A
0 mins
Test Coverage
// 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);
// };