Skip to content

Commit c3cc094

Browse files
committed
fix: jest.requireActual
1 parent fadb138 commit c3cc094

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/core/test/lib/base.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import { TestIntegration } from '../mocks/integration';
99
const PUBLIC_DSN = 'https://username@domain/path';
1010

1111
jest.mock('@sentry/utils', () => {
12-
const original = require.requireActual('@sentry/utils');
12+
const original = jest.requireActual('@sentry/utils');
1313
return {
1414
...original,
1515

0 commit comments

Comments
 (0)