1
0
mirror of https://github.com/PanJiaChen/vue-element-admin.git synced 2025-04-06 03:57:53 +08:00

Merge e3599bdb3f4ed160f4fdec99e20f3488d3c49702 into 6858a9ad67483025f6a9432a926beb9327037be3

This commit is contained in:
Nitin Ramnani 2024-11-28 00:30:16 +00:00 committed by GitHub
commit d3db3e2522
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -0,0 +1,69 @@
import { shallowMount, createLocalVue } from '@vue/test-utils'
import HeaderSearch from '@/components/HeaderSearch/index.vue'
import Vuex from 'vuex'
const localVue = createLocalVue()
localVue.use(Vuex)
describe('HeaderSearch.Vue', () => {
let getters
let store
let state
beforeEach(() => {
state = {
permission: {
routes: []
}
}
getters = {
permission_routes: () => []
}
store = new Vuex.Store({
getters,
state
})
})
it('It mounts', () => {
const wrapper = shallowMount(HeaderSearch, { store, localVue })
expect(wrapper.html()).toBeTruthy()
})
it('tests click', () => {
const wrapper = shallowMount(HeaderSearch, { store, localVue })
wrapper.vm.show = true
const clickSpy = jest.spyOn(wrapper.vm, 'click')
wrapper.vm.click()
expect(clickSpy).toHaveBeenCalled()
expect(wrapper.vm.show).toEqual(false)
})
it('tests change', () => {
const mockRoute = {
params: {
id: 1
}
}
const mockRouter = {
push: jest.fn()
}
const wrapper = shallowMount(HeaderSearch, {
store,
localVue,
global: {
mocks: {
$route: mockRoute,
$router: mockRouter
}
}
})
const changeSpy = jest.spyOn(wrapper.vm, 'change')
wrapper.vm.$router = {
push: jest.fn()
}
wrapper.vm.change({ path: 'test' })
expect(changeSpy).toHaveBeenCalled()
})
})