File tree Expand file tree Collapse file tree 1 file changed +14
-14
lines changed Expand file tree Collapse file tree 1 file changed +14
-14
lines changed Original file line number Diff line number Diff line change @@ -16,20 +16,20 @@ const flush = () => analytics.flush()
16
16
17
17
const pizzaEaten = ( ) => analytics . track ( 'Pizza Eaten' )
18
18
19
- const trackOrder = ( ) =>
20
- analytics
21
- . track ( 'Order Completed' )
22
- . track ( 'Order Cancelled' , {
23
- order_id : 323
24
- } )
25
- . identify ( 'userIdOnly' )
26
- . identify ( 'userId' , {
27
- age : 32
28
- } )
29
- . alias ( 'newlyAliasedId' )
30
- . screen ( 'User Login Screen' , {
31
- method : 'google'
32
- } )
19
+ const trackOrder = ( ) => {
20
+ analytics . track ( 'Order Completed' )
21
+ analytics . track ( 'Order Cancelled' , {
22
+ order_id : 323
23
+ } )
24
+ analytics . identify ( 'userIdOnly' )
25
+ analytics . identify ( 'userId' , {
26
+ age : 32
27
+ } )
28
+ analytics . alias ( 'newlyAliasedId' )
29
+ analytics . screen ( 'User Login Screen' , {
30
+ method : 'google'
31
+ } )
32
+ }
33
33
34
34
let buildId = null
35
35
const testSuite = ( ) =>
You can’t perform that action at this time.
0 commit comments