@@ -34,8 +34,7 @@ beforeEach(async () => {
3434
3535test ( 'should merge properties' , ( ) => {
3636 const vm = new Vue ( {
37- mixins : [ mWithObjA , mWithObjB ] ,
38- render : h => h ( 'p' , 'foo' )
37+ mixins : [ mWithObjA , mWithObjB ]
3938 } )
4039 expect ( vm . $firestoreRefs ) . toEqual ( {
4140 a : db . collection ( 3 ) ,
@@ -46,8 +45,7 @@ test('should merge properties', () => {
4645
4746test ( 'supports function syntax' , ( ) => {
4847 const vm = new Vue ( {
49- mixins : [ mWithFn ] ,
50- render : h => h ( 'p' , 'foo' )
48+ mixins : [ mWithFn ]
5149 } )
5250 expect ( vm . $firestoreRefs ) . toEqual ( {
5351 a : db . collection ( 5 ) ,
@@ -57,8 +55,7 @@ test('supports function syntax', () => {
5755
5856test ( 'should merge two functions' , ( ) => {
5957 const vm = new Vue ( {
60- mixins : [ mWithObjA , mWithObjB , mWithFn ] ,
61- render : h => h ( 'p' , 'foo' )
58+ mixins : [ mWithObjA , mWithObjB , mWithFn ]
6259 } )
6360 expect ( vm . $firestoreRefs ) . toEqual ( {
6461 a : db . collection ( 5 ) ,
@@ -70,8 +67,7 @@ test('should merge two functions', () => {
7067test ( 'ignores no return' , ( ) => {
7168 const spy = Vue . config . errorHandler = jest . fn ( )
7269 new Vue ( {
73- firestore : _ => { } ,
74- render : h => h ( 'p' , 'foo' )
70+ firestore : _ => { }
7571 } )
7672 expect ( spy ) . not . toHaveBeenCalled ( )
7773 spy . mockRestore ( )
0 commit comments