File tree Expand file tree Collapse file tree 2 files changed +0
-12
lines changed
event_processor/event_builder Expand file tree Collapse file tree 2 files changed +0
-12
lines changed Original file line number Diff line number Diff line change @@ -251,8 +251,6 @@ describe('buildConversionEventV1', () => {
251
251
} ,
252
252
253
253
tags : {
254
- // eslint-disable-next-line @typescript-eslint/ban-ts-comment
255
- // @ts -ignore
256
254
foo : 'bar' ,
257
255
value : '123' ,
258
256
revenue : '1000' ,
@@ -498,8 +496,6 @@ describe('buildConversionEventV1', () => {
498
496
} ,
499
497
500
498
tags : {
501
- // eslint-disable-next-line @typescript-eslint/ban-ts-comment
502
- // @ts -ignore
503
499
foo : 'bar' ,
504
500
value : 0 ,
505
501
revenue : 0 ,
@@ -586,8 +582,6 @@ describe('buildConversionEventV1', () => {
586
582
} ,
587
583
588
584
tags : {
589
- // eslint-disable-next-line @typescript-eslint/ban-ts-comment
590
- // @ts -ignore
591
585
foo : 'bar' ,
592
586
value : '123' ,
593
587
revenue : '1000' ,
@@ -671,8 +665,6 @@ describe('makeEventBatch', () => {
671
665
} ,
672
666
673
667
tags : {
674
- // eslint-disable-next-line @typescript-eslint/ban-ts-comment
675
- // @ts -ignore
676
668
foo : 'bar' ,
677
669
value : '123' ,
678
670
revenue : '1000' ,
Original file line number Diff line number Diff line change @@ -50,8 +50,6 @@ describe('getRevenueValue', () => {
50
50
} ) ;
51
51
52
52
it ( 'should return null if the revenue value is not present in the event tags' , ( ) => {
53
- // eslint-disable-next-line @typescript-eslint/ban-ts-comment
54
- // @ts -ignore
55
53
const parsedRevenueValue = eventTagUtils . getRevenueValue ( { not_revenue : '1337' } , logger ) ;
56
54
57
55
expect ( parsedRevenueValue ) . toBe ( null ) ;
@@ -83,8 +81,6 @@ describe('getEventValue', () => {
83
81
} ) ;
84
82
85
83
it ( 'should return null if the value is not present in the event tags' , ( ) => {
86
- // eslint-disable-next-line @typescript-eslint/ban-ts-comment
87
- // @ts -ignore
88
84
const parsedNumericValue = eventTagUtils . getEventValue ( { not_value : '13.37' } , logger ) ;
89
85
90
86
expect ( parsedNumericValue ) . toBe ( null ) ;
You can’t perform that action at this time.
0 commit comments