File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -54,19 +54,19 @@ describe('tagger', () => {
54
54
tagger . add ( carrier , {
55
55
[ ERROR_TYPE ] : 'foo' ,
56
56
[ ERROR_MESSAGE ] : 'foo' ,
57
- [ ERROR_STACK ] : 'foo'
57
+ [ ERROR_STACK ] : 'foo' ,
58
+ doNotSetTraceError : true
58
59
} )
59
60
60
61
expect ( carrier ) . to . have . property ( ERROR_TYPE , 'foo' )
61
62
expect ( carrier ) . to . have . property ( ERROR_MESSAGE , 'foo' )
62
63
expect ( carrier ) . to . have . property ( ERROR_STACK , 'foo' )
63
- expect ( carrier ) . to . have . property ( 'setTraceError' , true )
64
+ expect ( carrier ) . to . not . have . property ( 'setTraceError' )
64
65
65
66
tagger . add ( carrier , {
66
67
[ ERROR_TYPE ] : 'foo' ,
67
68
[ ERROR_MESSAGE ] : 'foo' ,
68
- [ ERROR_STACK ] : 'foo' ,
69
- doNotSetTraceError : true
69
+ [ ERROR_STACK ] : 'foo'
70
70
} )
71
71
72
72
expect ( carrier ) . to . have . property ( ERROR_TYPE , 'foo' )
You can’t perform that action at this time.
0 commit comments