rxjs-marbles
Advanced tools
Changelog
4.0.0 (2018-05-17)
Default to using TestScheduler.run
. See the RxJS documentation for an explanation of the new behaviour and of the breaking changes.
Added a run
property to the configuration settings - it defaults to true
.
The configure
function now returns an object containing a marbles
function (and a cases
function, for the framework-specific imports) that has the specified configuration applied. For example, to continue using the now deprecated behaviour, you would make these changes:
- import { cases, marbles } from "rxjs-marbles/mocha";
+ import { configure } from "rxjs-marbles/mocha";
+ const { cases, marbles } = configure({ run: false });
The following context methods and properties can only be used with configure({ run: false })
:
autoFlush
bind
configure
reframe
teardown
<a name="3.0.1"></a>