Add user['Count'] to fetchAllConntections tests.

This commit is contained in:
elweyn 2023-03-13 14:10:16 +01:00
parent 0b7e0fbc4b
commit b15d2ff252

View File

@ -74,7 +74,7 @@ describe('FollowList.vue', () => {
expect(wrapper.vm.allConnectionsCount).toBe(user.followingCount)
expect(wrapper.findAll('.user-teaser')).toHaveLength(user.following.length)
expect(wrapper.emitted('fetchAllConnections')).toEqual([['following']])
expect(wrapper.emitted('fetchAllConnections')).toEqual([['following', user['followingCount']]])
})
})
@ -85,7 +85,7 @@ describe('FollowList.vue', () => {
expect(wrapper.vm.allConnectionsCount).toBe(user.followedByCount)
expect(wrapper.findAll('.user-teaser')).toHaveLength(user.followedBy.length)
expect(wrapper.emitted('fetchAllConnections')).toEqual([['followedBy']])
expect(wrapper.emitted('fetchAllConnections')).toEqual([['followedBy', user['followedByCount']]])
})
})
})