correct test-case

This commit is contained in:
clauspeterhuebner 2025-03-20 23:36:35 +01:00
parent 6f02396d73
commit 0418737173

View File

@ -161,9 +161,9 @@ describe('Vuex store', () => {
const commit = vi.fn()
const state = {}
it('calls twenty commits', () => {
it('calls twenty-one commits', () => {
logout({ commit, state })
expect(commit).toHaveBeenCalledTimes(20)
expect(commit).toHaveBeenCalledTimes(21)
})
// ... (other logout action tests remain largely the same)