Custom Jest Matcher For XState Machine States
Here is a custom matcher for asserting the current state of an XState machine for Jest-based tests. I made some adaptations to it, but it was mostly developed by Nick Nisi.
To make this available to your tests, place it in your setupTests.ts
(or .js
) file, assuming that is configured in your jest.config.js
.
It can be used in your tests like so:
Notice you can pass either a string or object representation of the state, if there is nesting.
What is nice about this custom matcher is the informative failure messaging.
Last updated