mirror of
https://gitee.com/vuejs/vue.git
synced 2024-12-04 21:17:55 +08:00
fix errorHandler tests
This commit is contained in:
parent
068f6270d5
commit
bb5c102c35
@ -35,6 +35,8 @@ describe('Global config', () => {
|
||||
})
|
||||
|
||||
describe('errorHandler', () => {
|
||||
it('should be called with correct args', () => {
|
||||
const spy = jasmine.createSpy('errorHandler')
|
||||
Vue.config.errorHandler = spy
|
||||
const err = new Error()
|
||||
const vm = new Vue({
|
||||
@ -44,3 +46,4 @@ describe('Global config', () => {
|
||||
Vue.config.errorHandler = null
|
||||
})
|
||||
})
|
||||
})
|
||||
|
Loading…
Reference in New Issue
Block a user