...

/

The Test Schedulers in Rx

The Test Schedulers in Rx

Learn about the test scheduler and its usage in RxJS.

We'll cover the following...

RxJS gives us the TestScheduler, a Scheduler that is designed to help with testing. The TestScheduler allows us to emulate time at our convenience and create deterministic tests, where they are guaranteed to be 100% repeatable.

Besides that, it allows us to execute operations that would ...