File tree Expand file tree Collapse file tree 1 file changed +0
-3
lines changed Expand file tree Collapse file tree 1 file changed +0
-3
lines changed Original file line number Diff line number Diff line change @@ -44,7 +44,6 @@ describe('CrashReporting Module', () => {
4444 it ( 'should call the native method sendHandledJSCrash when platform is ios' , ( ) => {
4545
4646 Platform . OS = 'ios' ;
47- InstabugUtils . parseErrorStack . mockImplementation ( ( ) => 'javascriptStackTrace' ) ;
4847 const errorObject = { name : 'TypeError' , message : 'Invalid type' } ;
4948 CrashReporting . reportJSException ( errorObject ) ;
5049
@@ -62,7 +61,6 @@ describe('CrashReporting Module', () => {
6261 it ( 'should call the native method sendHandledJSCrash when platform is android' , ( ) => {
6362
6463 Platform . OS = 'android' ;
65- InstabugUtils . parseErrorStack . mockImplementation ( ( ) => 'javascriptStackTrace' ) ;
6664 const errorObject = { name : 'TypeError' , message : 'Invalid type' } ;
6765 CrashReporting . reportJSException ( errorObject ) ;
6866
@@ -81,7 +79,6 @@ describe('CrashReporting Module', () => {
8179 it ( 'should emit event IBGSendHandledJSCrash with the error object when platform is android' , ( done ) => {
8280
8381 Platform . OS = 'android' ;
84- InstabugUtils . parseErrorStack . mockImplementation ( ( ) => 'javascriptStackTrace' ) ;
8582 InstabugUtils . isOnReportHandlerSet . mockImplementation ( ( ) => true ) ;
8683
8784 const errorObject = { name : 'TypeError' , message : 'Invalid type' } ;
You can’t perform that action at this time.
0 commit comments