1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
# RxJS Lite Testing Module #
The Reactive Extensions for JavaScript has a built-in mechanism for testing all operators which allows for mocking absolute and relative time with ease. This module is designed to work with the `rx-lite` NPM module for both the standards-compliant version as well as compat for older browsers.
## Details ##
Files:
- [`rx.lite.testing.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/modules/rx-lite-testing/rx.lite.testing.js)
- [`rx.lite.testing.compat.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/modules/rx-lite-testing-compat/rx.lite.testing.compat.js)
NPM Packages:
- [`rx-lite-testing`](https://www.npmjs.org/package/rx-lite-testing)
- [`rx-lite-testing-compat`](https://www.npmjs.org/package/rx-lite-testing-compat)
File Dependencies:
- [`rx.lite.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/dist/rx.lite.js)
- [`rx.lite.compat.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/dist/rx.lite.compat.js)
## Included Classes ##
### Testing Classes
- [`Rx.ReactiveTest`](../../api/testing/reactivetest.md)
- [`Rx.Recorded`](../../api/testing/recorded.md)
- [`Rx.Subscription`](../../api/testing/subscription.md)
- [`Rx.TestScheduler`](../../api/testing/testscheduler.md)
|