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:
commit
d3db3e2522
69
tests/unit/components/HeaderSearch.spec.js
Normal file
69
tests/unit/components/HeaderSearch.spec.js
Normal 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()
|
||||
})
|
||||
})
|
Loading…
x
Reference in New Issue
Block a user