@@ -182,9 +182,13 @@ describe('component: emit', () => {
182
182
expect ( fn2 ) . toHaveBeenCalledWith ( 1 )
183
183
} )
184
184
185
- test . todo ( 'warning for undeclared event (array)' , ( ) => { } )
185
+ test . todo ( 'warning for undeclared event (array)' , ( ) => {
186
+ // TODO: warning
187
+ } )
186
188
187
- test . todo ( 'warning for undeclared event (object)' , ( ) => { } )
189
+ test . todo ( 'warning for undeclared event (object)' , ( ) => {
190
+ // TODO: warning
191
+ } )
188
192
189
193
test ( 'should not warn if has equivalent onXXX prop' , ( ) => {
190
194
const Foo = defineComponent ( {
@@ -201,7 +205,9 @@ describe('component: emit', () => {
201
205
) . not . toHaveBeenWarned ( )
202
206
} )
203
207
204
- test . todo ( 'validator warning' , ( ) => { } )
208
+ test . todo ( 'validator warning' , ( ) => {
209
+ // TODO: warning validator
210
+ } )
205
211
206
212
// NOTE: not supported mixins
207
213
// test.todo('merging from mixins', () => {})
@@ -476,7 +482,7 @@ describe('component: emit', () => {
476
482
expect ( fn ) . not . toHaveBeenCalled ( )
477
483
} )
478
484
479
- test . todo ( 'merge string array emits' , async ( ) => { } )
480
-
481
- test . todo ( 'merge object emits' , async ( ) => { } )
485
+ // NOTE: not supported mixins
486
+ // test.todo('merge string array emits', async () => {})
487
+ // test.todo('merge object emits', async () => {})
482
488
} )
0 commit comments