Merge branch 'master' of github.com:Human-Connection/Human-Connection into donation-info

This commit is contained in:
mattwr18 2019-11-12 21:04:54 +01:00
commit 7ce3e25110

View File

@ -29,6 +29,7 @@ describe('PostIndex', () => {
beforeEach(() => {
mutations = {
'posts/SELECT_ORDER': jest.fn(),
'posts/SET_CURRENT_POSTS': jest.fn(),
}
store = new Vuex.Store({
getters: {
@ -53,6 +54,7 @@ describe('PostIndex', () => {
'auth/user': () => {
return { id: 'u23' }
},
'posts/currentPosts': () => [],
},
mutations,
})