File tree Expand file tree Collapse file tree 1 file changed +3
-6
lines changed
packages/plugin-analytic/src/__tests__ Expand file tree Collapse file tree 1 file changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -76,8 +76,7 @@ describe('AbstractAnalytic', () => {
76
76
abstractAnalytic . init ( ) ;
77
77
expect ( dispatcher . fire ) . toHaveBeenCalledWith (
78
78
AnalyticEvents . INITIALIZED ,
79
- { type : 'dummy' } ,
80
- true
79
+ { type : 'dummy' }
81
80
) ;
82
81
} ) ;
83
82
} ) ;
@@ -106,8 +105,7 @@ describe('AbstractAnalytic', () => {
106
105
expect ( abstractAnalytic . _configuration ) . toHaveBeenCalled ( ) ;
107
106
expect ( dispatcher . fire ) . toHaveBeenCalledWith (
108
107
AnalyticEvents . LOADED ,
109
- { type : 'dummy' } ,
110
- true
108
+ { type : 'dummy' }
111
109
) ;
112
110
} ) ;
113
111
@@ -119,8 +117,7 @@ describe('AbstractAnalytic', () => {
119
117
expect ( abstractAnalytic . _configuration . mock . calls ) . toHaveLength ( 1 ) ;
120
118
expect ( dispatcher . fire ) . toHaveBeenCalledWith (
121
119
AnalyticEvents . LOADED ,
122
- { type : 'dummy' } ,
123
- true
120
+ { type : 'dummy' }
124
121
) ;
125
122
expect ( dispatcher . fire . mock . calls ) . toHaveLength ( 1 ) ;
126
123
} ) ;
You can’t perform that action at this time.
0 commit comments