jest-matcher-vue-test-utils
Cute matchers for Jest to test Vue components with Vue Test Utils.
You can write tests for Vue component/store intuitively ⚡️
becomes
And all matchers have type definition and doc ?♂️
Installation
Get from npm:
Then, register matchers on your jest process:
Provided Matchers
Existence on Wrapper
toShow
Assert the function shows a content on Wrapper of vue-test-utils
toHide
Assert the function hides a content on Wrapper of vue-test-utils
Events on Wrapper
toEmit
Assert the action emits the event (with the payload optionally) on Wrapper of vue-test-utils
Async function is supported as well.
toHaveEmitted
Assert the event is emitted (with the payload optionally) on Wrapper of vue-test-utils
Vuex actions/mutations
toDispatch
Assert the function dispatches Vuex action on the component
Async function is supported as well.
toCommit
(TBD)
Assert the store mutation is committed
toHaveDispatched
Assert a component has dispatched Vuex action
Prop Validations
toBeValidProps
Assert that a prop set is valid for a component
toBeValidProp
Assert that a single prop is valid for a component
toRequireProp
Assert that a component requires a prop
toHaveDefaultProp
Assert that a component gives default to a prop
toBeValidPropWithTypeCheck
Assert that a component validates a prop with type
toBeValidPropWithCustomValidator
Assert that a component validates a prop with custom validator
Config
We can configure the matchers. Currently accepting mountOptions property to give options for shallowMount
which is running in inside of matchers.