Helper functions that make unit testing easier for VueJs applications.
npm install --save-dev git+https://[email protected]/sarngru/vue-test-utils-helpers.git
Mocks all components in routes array and makes them available for assertion.
mockRouterComponents(routes)
expect(wrapper.vm.$route.name).toBe('home')
Jest matcher that matches vue-test-utils Wrapper
route with the expected route.
expect(wrapper).toHaveRouteName('home')
Discovers and mocks all actions
in passed Vuex store modules
const { actions } = mockStoreActions({ modules, jestFn: jest.fn })
Discovers and mocks all mutations
in passed Vuex store modules
const { mutations } = mockStoreMutations({ modules, jestFn: jest.fn })
Discovers and mocks all getters
in passed Vuex store modules
const { getters } = mockStoreGetters({ modules, mockedGetters: {}, jestFn: jest.fn })
Jest matcher that matches the payload of last call to a mocked function with the expected payload. Makes it easier to assert on mocked store action.
expect(actions.someAction).toHaveBeenLastCalledWithPayload(expected)
Jest matcher is similar to toHaveBeenLastCalledWithPayload
and allows you to pick the index for the call.
expect(actions.someAction).toHaveBeenNthCalledWithPayload(expected, index)
Create stubbed component using createStubbedComponent
that can be used with mount
method in vue-test-utils.
const component = createStubbedComponent()
const component = createStubbedComponent({ slots: ['default', 'slot1'] })
const component = createStubbedComponent({ events: ['emit1', 'emit2'] })
const component = createStubbedComponent({
events: {
emit1: 'foo',
emit2: { foo: 'bar' },
emit3: null
}
})
/*
vue-test-utils - emit event from stubbed component so that component under test can react to emitted event
*/
const wrapper = mount(Component, {
stubs: {
'StubbedComponent': createStubbedComponent({
events: ['emit1']
})
}
})
wrapper.find('.stubbed-component-selector').trigger('emit1')
expect(<wrapper behviour on handling event emit1>).toBe(<expected>)