Skip to content

Commit 6d7967d

Browse files
committed
fix linter error
1 parent 5d36968 commit 6d7967d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/core/test/lib/sdk.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { Client, Integration } from '@sentry/types';
33

44
import { installedIntegrations } from '../../src/integration';
55
import { initAndBind } from '../../src/sdk';
6-
import { setupTestTransport, TestClient } from '../mocks/client';
6+
import { setupTestTransport, TestClient, TestOptions } from '../mocks/client';
77

88
// eslint-disable-next-line no-var
99
declare var global: any;
@@ -66,7 +66,7 @@ describe('SDK', () => {
6666
new MockIntegration('MockIntegration 1'),
6767
new MockIntegration('MockIntegration 2'),
6868
];
69-
const options = { dsn: PUBLIC_DSN, defaultIntegrations: false as false };
69+
const options: TestOptions = { dsn: PUBLIC_DSN, defaultIntegrations: false };
7070
initAndBind(TestClient, options, setupTestTransport(options).transport);
7171
expect((DEFAULT_INTEGRATIONS[0].setupOnce as jest.Mock).mock.calls.length).toBe(0);
7272
expect((DEFAULT_INTEGRATIONS[1].setupOnce as jest.Mock).mock.calls.length).toBe(0);

0 commit comments

Comments
 (0)