correct test

This commit is contained in:
clauspeterhuebner 2025-03-24 22:34:26 +01:00
parent 47454b4ebb
commit ab39cf436c

View File

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