38
Jasmine Marbles now supports RxJS 6/7 with jest-circus
Photo by Sharon McCutcheon on Unsplash
Jest version 27 was recently released, which introduces a completely new default test runner named
jest-circus
. The previous jest-jasmine2
test runner contained many jasmine-specific APIs that are not in jest-circus.To install the latest version:
npm install jasmine-marbles@latest --save-dev
or
yarn install jasmine-marbles@latest --dev
If you need to revert back to the previous test runner, set the
testRunner
in your jest.config.js
to jest-jasmine2
.To learn more about testing RxJS using marble diagrams in general, check out the marble testing guide in the RxJS docs.
If you've found jasmine-marbles useful ❤️, please consider sponsoring me on GitHub as a monthly or one-time sponsor.
38