@@ -63,21 +63,21 @@ describe('Unit | coreHandlers | handleScope', () => {
6363
6464 describe ( 'normalizeConsoleBreadcrumb' , ( ) => {
6565 it ( 'handles console messages with no arguments' , ( ) => {
66- const breadcrumb : Breadcrumb = { category : 'console' , message : 'test' } ;
66+ const breadcrumb = { category : 'console' , message : 'test' } ;
6767 const actual = HandleScope . normalizeConsoleBreadcrumb ( breadcrumb ) ;
6868
6969 expect ( actual ) . toMatchObject ( { category : 'console' , message : 'test' } ) ;
7070 } ) ;
7171
7272 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 : [ ] } } ;
7474 const actual = HandleScope . normalizeConsoleBreadcrumb ( breadcrumb ) ;
7575
7676 expect ( actual ) . toMatchObject ( { category : 'console' , message : 'test' , data : { arguments : [ ] } } ) ;
7777 } ) ;
7878
7979 it ( 'handles console messages with simple arguments' , ( ) => {
80- const breadcrumb : Breadcrumb = {
80+ const breadcrumb = {
8181 category : 'console' ,
8282 message : 'test' ,
8383 data : { arguments : [ 1 , 'a' , true , null , undefined ] } ,
@@ -94,7 +94,7 @@ describe('Unit | coreHandlers | handleScope', () => {
9494 } ) ;
9595
9696 it ( 'truncates large strings' , ( ) => {
97- const breadcrumb : Breadcrumb = {
97+ const breadcrumb = {
9898 category : 'console' ,
9999 message : 'test' ,
100100 data : {
@@ -114,7 +114,7 @@ describe('Unit | coreHandlers | handleScope', () => {
114114 } ) ;
115115
116116 it ( 'truncates large JSON objects' , ( ) => {
117- const breadcrumb : Breadcrumb = {
117+ const breadcrumb = {
118118 category : 'console' ,
119119 message : 'test' ,
120120 data : {
0 commit comments