@@ -63,21 +63,21 @@ describe('Unit | coreHandlers | handleScope', () => {
63
63
64
64
describe ( 'normalizeConsoleBreadcrumb' , ( ) => {
65
65
it ( 'handles console messages with no arguments' , ( ) => {
66
- const breadcrumb : Breadcrumb = { category : 'console' , message : 'test' } ;
66
+ const breadcrumb = { category : 'console' , message : 'test' } ;
67
67
const actual = HandleScope . normalizeConsoleBreadcrumb ( breadcrumb ) ;
68
68
69
69
expect ( actual ) . toMatchObject ( { category : 'console' , message : 'test' } ) ;
70
70
} ) ;
71
71
72
72
it ( 'handles console messages with empty arguments' , ( ) => {
73
- const breadcrumb : Breadcrumb = { category : 'console' , message : 'test' , data : { arguments : [ ] } } ;
73
+ const breadcrumb = { category : 'console' , message : 'test' , data : { arguments : [ ] } } ;
74
74
const actual = HandleScope . normalizeConsoleBreadcrumb ( breadcrumb ) ;
75
75
76
76
expect ( actual ) . toMatchObject ( { category : 'console' , message : 'test' , data : { arguments : [ ] } } ) ;
77
77
} ) ;
78
78
79
79
it ( 'handles console messages with simple arguments' , ( ) => {
80
- const breadcrumb : Breadcrumb = {
80
+ const breadcrumb = {
81
81
category : 'console' ,
82
82
message : 'test' ,
83
83
data : { arguments : [ 1 , 'a' , true , null , undefined ] } ,
@@ -94,7 +94,7 @@ describe('Unit | coreHandlers | handleScope', () => {
94
94
} ) ;
95
95
96
96
it ( 'truncates large strings' , ( ) => {
97
- const breadcrumb : Breadcrumb = {
97
+ const breadcrumb = {
98
98
category : 'console' ,
99
99
message : 'test' ,
100
100
data : {
@@ -114,7 +114,7 @@ describe('Unit | coreHandlers | handleScope', () => {
114
114
} ) ;
115
115
116
116
it ( 'truncates large JSON objects' , ( ) => {
117
- const breadcrumb : Breadcrumb = {
117
+ const breadcrumb = {
118
118
category : 'console' ,
119
119
message : 'test' ,
120
120
data : {
0 commit comments