forked from AkkomaGang/admin-fe
Add test for SetActiveTab arguments
This commit is contained in:
parent
f4df449f1a
commit
4b9c5df5f2
1 changed files with 6 additions and 3 deletions
|
@ -4,11 +4,11 @@ import Element from 'element-ui'
|
||||||
import Settings from '@/views/settings/index'
|
import Settings from '@/views/settings/index'
|
||||||
import flushPromises from 'flush-promises'
|
import flushPromises from 'flush-promises'
|
||||||
import app from '@/store/modules/app'
|
import app from '@/store/modules/app'
|
||||||
import getters from '@/store/getters'
|
|
||||||
import relays from '@/store/modules/relays'
|
import relays from '@/store/modules/relays'
|
||||||
import settings from '@/store/modules/settings'
|
import settings from '@/store/modules/settings'
|
||||||
import user from '@/store/modules/user'
|
import user from '@/store/modules/user'
|
||||||
import users from '@/store/modules/users'
|
import users from '@/store/modules/users'
|
||||||
|
import getters from '@/store/getters'
|
||||||
|
|
||||||
config.mocks["$t"] = () => {}
|
config.mocks["$t"] = () => {}
|
||||||
|
|
||||||
|
@ -19,17 +19,18 @@ localVue.use(Element)
|
||||||
describe('Settings search', () => {
|
describe('Settings search', () => {
|
||||||
let store
|
let store
|
||||||
let actions
|
let actions
|
||||||
|
let permission
|
||||||
|
|
||||||
beforeEach(() => {
|
beforeEach(() => {
|
||||||
actions = { SetActiveTab: jest.fn() }
|
actions = { SetActiveTab: jest.fn() }
|
||||||
|
permission = { addRouters: jest.fn() }
|
||||||
store = new Vuex.Store({
|
store = new Vuex.Store({
|
||||||
modules: {
|
modules: {
|
||||||
app,
|
app,
|
||||||
|
permission,
|
||||||
relays,
|
relays,
|
||||||
settings: { ...settings, actions },
|
settings: { ...settings, actions },
|
||||||
user,
|
user,
|
||||||
users
|
|
||||||
},
|
},
|
||||||
getters
|
getters
|
||||||
})
|
})
|
||||||
|
@ -55,6 +56,8 @@ describe('Settings search', () => {
|
||||||
await flushPromises()
|
await flushPromises()
|
||||||
wrapper.vm.handleSearchSelect({ group: 'Pleroma.Upload', key: 'Pleroma.Upload' })
|
wrapper.vm.handleSearchSelect({ group: 'Pleroma.Upload', key: 'Pleroma.Upload' })
|
||||||
expect(actions.SetActiveTab).toHaveBeenCalled()
|
expect(actions.SetActiveTab).toHaveBeenCalled()
|
||||||
|
expect(actions.SetActiveTab).toHaveBeenCalledWith(expect.anything(), 'upload', undefined)
|
||||||
|
|
||||||
done()
|
done()
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in a new issue