38 lines
825 B
JavaScript
38 lines
825 B
JavaScript
|
/* eslint-disable */
|
||
|
|
||
|
/**
|
||
|
* helper for testing action with expected mutations
|
||
|
* https://vuex.vuejs.org/en/testing.html
|
||
|
*/
|
||
|
export default (action, payload, state, expectedMutations, done) => {
|
||
|
let count = 0;
|
||
|
|
||
|
// mock commit
|
||
|
const commit = (type, payload) => {
|
||
|
const mutation = expectedMutations[count];
|
||
|
|
||
|
try {
|
||
|
expect(mutation.type).to.equal(type);
|
||
|
if (payload) {
|
||
|
expect(mutation.payload).to.deep.equal(payload);
|
||
|
}
|
||
|
} catch (error) {
|
||
|
done(error);
|
||
|
}
|
||
|
|
||
|
count++;
|
||
|
if (count >= expectedMutations.length) {
|
||
|
done();
|
||
|
}
|
||
|
};
|
||
|
|
||
|
// call the action with mocked store and arguments
|
||
|
action({ commit, state }, payload);
|
||
|
|
||
|
// check if no mutations should have been dispatched
|
||
|
if (expectedMutations.length === 0) {
|
||
|
expect(count).to.equal(0);
|
||
|
done();
|
||
|
}
|
||
|
};
|