allow for testAction to wait until all promises are resolved

This commit is contained in:
Lukas Eipert 2018-07-19 16:26:29 +02:00
parent 66f5be832b
commit 0bb1009ced
No known key found for this signature in database
GPG Key ID: 148BEA37CB35B2AC
2 changed files with 30 additions and 7 deletions

View File

@ -84,14 +84,12 @@ export default (
done(); done();
}; };
return new Promise((resolve, reject) => { const result = action({ commit, state, dispatch, rootState: state }, payload);
try {
const result = action({ commit, state, dispatch, rootState: state }, payload); return new Promise(resolve => {
resolve(result); setImmediate(resolve);
} catch (e) {
reject(e);
}
}) })
.then(() => result)
.catch(error => { .catch(error => {
validateResults(); validateResults();
throw error; throw error;

View File

@ -138,4 +138,29 @@ describe('VueX test helper (testAction)', () => {
}); });
}); });
}); });
it('should work with async actions not returning promises', done => {
const data = { FOO: 'BAR' };
const promiseAction = ({ commit, dispatch }) => {
dispatch('ACTION');
axios
.get(TEST_HOST)
.then(() => {
commit('SUCCESS');
return data;
})
.catch(error => {
commit('ERROR');
throw error;
});
};
mock.onGet(TEST_HOST).replyOnce(200, 42);
assertion = { mutations: [{ type: 'SUCCESS' }], actions: [{ type: 'ACTION' }] };
testAction(promiseAction, null, {}, assertion.mutations, assertion.actions, done);
});
}); });