1
1
import Vue from 'vue'
2
2
3
- describe ( 'Options catchError ' , ( ) => {
3
+ describe ( 'Options errorCaptured ' , ( ) => {
4
4
let globalSpy
5
5
6
6
beforeEach ( ( ) => {
@@ -26,7 +26,7 @@ describe('Options catchError', () => {
26
26
}
27
27
28
28
new Vue ( {
29
- catchError : spy ,
29
+ errorCaptured : spy ,
30
30
render : h => h ( Child )
31
31
} ) . $mount ( )
32
32
@@ -49,7 +49,7 @@ describe('Options catchError', () => {
49
49
data : {
50
50
error : null
51
51
} ,
52
- catchError ( e , vm , info ) {
52
+ errorCaptured ( e , vm , info ) {
53
53
expect ( vm ) . toBe ( child )
54
54
this . error = e . toString ( ) + ' in ' + info
55
55
} ,
@@ -82,7 +82,7 @@ describe('Options catchError', () => {
82
82
}
83
83
84
84
new Vue ( {
85
- catchError ( err , vm , info ) {
85
+ errorCaptured ( err , vm , info ) {
86
86
spy ( err , vm , info )
87
87
return true
88
88
} ,
@@ -108,14 +108,14 @@ describe('Options catchError', () => {
108
108
109
109
let err2
110
110
const vm = new Vue ( {
111
- catchError ( ) {
111
+ errorCaptured ( ) {
112
112
err2 = new Error ( 'foo' )
113
113
throw err2
114
114
} ,
115
115
render : h => h ( Child , { } )
116
116
} ) . $mount ( )
117
117
118
118
expect ( globalSpy ) . toHaveBeenCalledWith ( err , child , 'created hook' )
119
- expect ( globalSpy ) . toHaveBeenCalledWith ( err2 , vm , 'catchError ' )
119
+ expect ( globalSpy ) . toHaveBeenCalledWith ( err2 , vm , 'errorCaptured hook ' )
120
120
} )
121
121
} )
0 commit comments