We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 12847c6 commit 01bab2dCopy full SHA for 01bab2d
packages/core/test/lib/sdk.test.ts
@@ -93,9 +93,9 @@ describe('SDK', () => {
93
];
94
const newIntegration = new MockIntegration('MockIntegration 3');
95
initAndBind(TestClient, {
96
- dsn: PUBLIC_DSN,
97
// Take only the first one and add a new one to it
98
defaultIntegrations: DEFAULT_INTEGRATIONS,
+ dsn: PUBLIC_DSN,
99
integrations: (integrations: Integration[]) => integrations.slice(0, 1).concat(newIntegration),
100
});
101
expect((DEFAULT_INTEGRATIONS[0].setupOnce as jest.Mock).mock.calls.length).toBe(1);
0 commit comments