Skip to content

Commit 3374de4

Browse files
committed
chore: fix tests
1 parent 3bdc0f1 commit 3374de4

File tree

2 files changed

+17
-17
lines changed

2 files changed

+17
-17
lines changed

packages/js/test/unit/server/integrations/uncaught_exception_monitor.server.test.ts

+10-10
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ describe('UncaughtExceptionMonitor', () => {
1919
beforeEach(() => {
2020
// We just need a really basic client, so ignoring type issues here
2121
client = new TestClient(
22-
{ apiKey: 'testKey', afterUncaught: jest.fn(), logger: nullLogger() },
22+
{ apiKey: 'testKey', afterUncaught: jest.fn(), logger: nullLogger() },
2323
new TestTransport()
2424
) as unknown as typeof Singleton
2525
uncaughtExceptionMonitor = new UncaughtExceptionMonitor()
@@ -83,27 +83,27 @@ describe('UncaughtExceptionMonitor', () => {
8383
it('does nothing if our listener is not present', () => {
8484
process.on('uncaughtException', (err) => { console.log(err) })
8585
expect(getListenerCount()).toBe(1)
86-
86+
8787
uncaughtExceptionMonitor.maybeRemoveListener()
8888
expect(getListenerCount()).toBe(1)
8989
})
9090
})
9191

92-
describe('__listener', () => {
93-
const error = new Error('dang, broken again')
92+
describe('__listener', () => {
93+
const error = new Error('dang, broken again')
9494

9595
it('calls notify, afterUncaught, and fatallyLogAndExit', (done) => {
9696
uncaughtExceptionMonitor.__listener(error)
9797
expect(notifySpy).toHaveBeenCalledTimes(1)
9898
expect(notifySpy).toHaveBeenCalledWith(
99-
error,
99+
error,
100100
{ afterNotify: expect.any(Function) }
101101
)
102102
client.afterNotify(() => {
103103
expect(client.config.afterUncaught).toHaveBeenCalledWith(error)
104-
expect(fatallyLogAndExitSpy).toHaveBeenCalledWith(error)
104+
expect(fatallyLogAndExitSpy).toHaveBeenCalledWith(error, 'uncaught exception')
105105
done()
106-
})
106+
})
107107
})
108108

109109
it('returns if it is already reporting', () => {
@@ -132,15 +132,15 @@ describe('UncaughtExceptionMonitor', () => {
132132
uncaughtExceptionMonitor.__handlerAlreadyCalled = true
133133
uncaughtExceptionMonitor.__listener(error)
134134
expect(notifySpy).not.toHaveBeenCalled()
135-
expect(fatallyLogAndExitSpy).toHaveBeenCalledWith(error)
135+
expect(fatallyLogAndExitSpy).toHaveBeenCalledWith(error, 'uncaught exception')
136136
})
137137
})
138138

139139
describe('hasOtherUncaughtExceptionListeners', () => {
140140
it('returns true if there are user-added listeners', () => {
141141
uncaughtExceptionMonitor.maybeAddListener()
142142
process.on('uncaughtException', function domainUncaughtExceptionClear() {
143-
return
143+
return
144144
})
145145
process.on('uncaughtException', function userAddedListener() {
146146
return
@@ -151,7 +151,7 @@ describe('UncaughtExceptionMonitor', () => {
151151
it('returns false if there are only our expected listeners', () => {
152152
uncaughtExceptionMonitor.maybeAddListener()
153153
process.on('uncaughtException', function domainUncaughtExceptionClear() {
154-
return
154+
return
155155
})
156156
expect(uncaughtExceptionMonitor.hasOtherUncaughtExceptionListeners()).toBe(false)
157157
})

packages/js/test/unit/server/integrations/unhandled_rejection_monitor.server.test.ts

+7-7
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ describe('UnhandledRejectionMonitor', () => {
1818
beforeEach(() => {
1919
// We just need a really basic client, so ignoring type issues here
2020
client = new TestClient(
21-
{ apiKey: 'testKey', afterUncaught: jest.fn(), logger: nullLogger() },
21+
{ apiKey: 'testKey', afterUncaught: jest.fn(), logger: nullLogger() },
2222
new TestTransport()
2323
) as unknown as typeof Singleton
2424
unhandledRejectionMonitor = new UnhandledRejectionMonitor()
@@ -69,28 +69,28 @@ describe('UnhandledRejectionMonitor', () => {
6969
it('does nothing if our listener is not present', () => {
7070
process.on('unhandledRejection', (err) => { console.log(err) })
7171
expect(getListenerCount()).toBe(1)
72-
72+
7373
unhandledRejectionMonitor.maybeRemoveListener()
7474
expect(getListenerCount()).toBe(1)
7575
})
7676
})
7777

78-
describe('__listener', () => {
78+
describe('__listener', () => {
7979
const promise = new Promise(() => true)
8080
const reason = 'Promise rejection reason'
8181

82-
it('calls notify and fatallyLogAndExit', (done) => {
82+
it('calls notify and fatallyLogAndExit', (done) => {
8383
unhandledRejectionMonitor.__listener(reason, promise)
8484
expect(notifySpy).toHaveBeenCalledTimes(1)
8585
expect(notifySpy).toHaveBeenCalledWith(
86-
reason,
86+
reason,
8787
{ component: 'unhandledRejection' },
8888
{ afterNotify: expect.any(Function) }
8989
)
9090
client.afterNotify(() => {
91-
expect(fatallyLogAndExitSpy).toHaveBeenCalledWith(reason)
91+
expect(fatallyLogAndExitSpy).toHaveBeenCalledWith(reason, 'unhandled rejection')
9292
done()
93-
})
93+
})
9494
})
9595
})
9696

0 commit comments

Comments
 (0)