Skip to content

Commit 08a50f1

Browse files
committed
cleanup
1 parent 7d98cb6 commit 08a50f1

File tree

2 files changed

+6
-9
lines changed

2 files changed

+6
-9
lines changed

packages/core/src/client.ts

+2-4
Original file line numberDiff line numberDiff line change
@@ -81,16 +81,14 @@ interface DoNotSendEventError {
8181
[DO_NOT_SEND_EVENT_SYMBOL]: true;
8282
}
8383

84-
/** Exported for tests only. */
85-
export function _makeInternalError(message: string): InternalError {
84+
function _makeInternalError(message: string): InternalError {
8685
return {
8786
message,
8887
[INTERNAL_ERROR_SYMBOL]: true,
8988
};
9089
}
9190

92-
/** Exported for tests only. */
93-
export function _makeDoNotSendEventError(message: string): DoNotSendEventError {
91+
function _makeDoNotSendEventError(message: string): DoNotSendEventError {
9492
return {
9593
message,
9694
[DO_NOT_SEND_EVENT_SYMBOL]: true,

packages/core/test/lib/client.test.ts

+4-5
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ import {
1212
withMonitor,
1313
} from '../../src';
1414
import type { BaseClient, Client } from '../../src/client';
15-
import { _makeInternalError } from '../../src/client';
1615
import * as integrationModule from '../../src/integration';
1716
import type { Envelope, ErrorEvent, Event, SpanJSON, TransactionEvent } from '../../src/types-hoist';
1817
import * as loggerModule from '../../src/utils-hoist/logger';
@@ -1294,7 +1293,7 @@ describe('Client', () => {
12941293
expect(beforeSend).toHaveBeenCalled();
12951294
expect(TestClient.instance!.event).toBeUndefined();
12961295
expect(loggerWarnSpy).toBeCalledWith(
1297-
_makeInternalError('before send for type `error` must return `null` or a valid event.').message,
1296+
'before send for type `error` must return `null` or a valid event.',
12981297
);
12991298
}
13001299
});
@@ -1315,7 +1314,7 @@ describe('Client', () => {
13151314
expect(beforeSendTransaction).toHaveBeenCalled();
13161315
expect(TestClient.instance!.event).toBeUndefined();
13171316
expect(loggerWarnSpy).toBeCalledWith(
1318-
_makeInternalError('before send for type `transaction` must return `null` or a valid event.').message,
1317+
'before send for type `transaction` must return `null` or a valid event.',
13191318
);
13201319
}
13211320
});
@@ -1688,9 +1687,9 @@ describe('Client', () => {
16881687
originalException: exception,
16891688
});
16901689
expect(loggerWarnSpy).toBeCalledWith(
1691-
_makeInternalError(
1690+
16921691
`Event processing pipeline threw an error, original event will not be sent. Details have been sent as a new event.\nReason: ${exception}`,
1693-
).message,
1692+
,
16941693
);
16951694
});
16961695

0 commit comments

Comments
 (0)