@@ -19,7 +19,7 @@ describe('UncaughtExceptionMonitor', () => {
19
19
beforeEach ( ( ) => {
20
20
// We just need a really basic client, so ignoring type issues here
21
21
client = new TestClient (
22
- { apiKey : 'testKey' , afterUncaught : jest . fn ( ) , logger : nullLogger ( ) } ,
22
+ { apiKey : 'testKey' , afterUncaught : jest . fn ( ) , logger : nullLogger ( ) } ,
23
23
new TestTransport ( )
24
24
) as unknown as typeof Singleton
25
25
uncaughtExceptionMonitor = new UncaughtExceptionMonitor ( )
@@ -83,27 +83,27 @@ describe('UncaughtExceptionMonitor', () => {
83
83
it ( 'does nothing if our listener is not present' , ( ) => {
84
84
process . on ( 'uncaughtException' , ( err ) => { console . log ( err ) } )
85
85
expect ( getListenerCount ( ) ) . toBe ( 1 )
86
-
86
+
87
87
uncaughtExceptionMonitor . maybeRemoveListener ( )
88
88
expect ( getListenerCount ( ) ) . toBe ( 1 )
89
89
} )
90
90
} )
91
91
92
- describe ( '__listener' , ( ) => {
93
- const error = new Error ( 'dang, broken again' )
92
+ describe ( '__listener' , ( ) => {
93
+ const error = new Error ( 'dang, broken again' )
94
94
95
95
it ( 'calls notify, afterUncaught, and fatallyLogAndExit' , ( done ) => {
96
96
uncaughtExceptionMonitor . __listener ( error )
97
97
expect ( notifySpy ) . toHaveBeenCalledTimes ( 1 )
98
98
expect ( notifySpy ) . toHaveBeenCalledWith (
99
- error ,
99
+ error ,
100
100
{ afterNotify : expect . any ( Function ) }
101
101
)
102
102
client . afterNotify ( ( ) => {
103
103
expect ( client . config . afterUncaught ) . toHaveBeenCalledWith ( error )
104
- expect ( fatallyLogAndExitSpy ) . toHaveBeenCalledWith ( error )
104
+ expect ( fatallyLogAndExitSpy ) . toHaveBeenCalledWith ( error , 'uncaught exception' )
105
105
done ( )
106
- } )
106
+ } )
107
107
} )
108
108
109
109
it ( 'returns if it is already reporting' , ( ) => {
@@ -132,15 +132,15 @@ describe('UncaughtExceptionMonitor', () => {
132
132
uncaughtExceptionMonitor . __handlerAlreadyCalled = true
133
133
uncaughtExceptionMonitor . __listener ( error )
134
134
expect ( notifySpy ) . not . toHaveBeenCalled ( )
135
- expect ( fatallyLogAndExitSpy ) . toHaveBeenCalledWith ( error )
135
+ expect ( fatallyLogAndExitSpy ) . toHaveBeenCalledWith ( error , 'uncaught exception' )
136
136
} )
137
137
} )
138
138
139
139
describe ( 'hasOtherUncaughtExceptionListeners' , ( ) => {
140
140
it ( 'returns true if there are user-added listeners' , ( ) => {
141
141
uncaughtExceptionMonitor . maybeAddListener ( )
142
142
process . on ( 'uncaughtException' , function domainUncaughtExceptionClear ( ) {
143
- return
143
+ return
144
144
} )
145
145
process . on ( 'uncaughtException' , function userAddedListener ( ) {
146
146
return
@@ -151,7 +151,7 @@ describe('UncaughtExceptionMonitor', () => {
151
151
it ( 'returns false if there are only our expected listeners' , ( ) => {
152
152
uncaughtExceptionMonitor . maybeAddListener ( )
153
153
process . on ( 'uncaughtException' , function domainUncaughtExceptionClear ( ) {
154
- return
154
+ return
155
155
} )
156
156
expect ( uncaughtExceptionMonitor . hasOtherUncaughtExceptionListeners ( ) ) . toBe ( false )
157
157
} )
0 commit comments