Skip to content

Commit b01afcb

Browse files
committed
fix tests
1 parent dac5163 commit b01afcb

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

dev-packages/browser-integration-tests/suites/integrations/Breadcrumbs/dom/init.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ window.Sentry = Sentry;
55
Sentry.init({
66
dsn: 'https://[email protected]/1337',
77
defaultIntegrations: false,
8-
integrations: [new Sentry.breadcrumbsIntegration()],
8+
integrations: [Sentry.breadcrumbsIntegration()],
99
sampleRate: 1,
1010
});

dev-packages/browser-integration-tests/suites/integrations/Breadcrumbs/fetch/init.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ window.Sentry = Sentry;
55
Sentry.init({
66
dsn: 'https://[email protected]/1337',
77
defaultIntegrations: false,
8-
integrations: [new Sentry.breadcrumbsIntegration()],
8+
integrations: [Sentry.breadcrumbsIntegration()],
99
sampleRate: 1,
1010
});

dev-packages/browser-integration-tests/suites/integrations/Breadcrumbs/xhr/init.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ window.Sentry = Sentry;
55
Sentry.init({
66
dsn: 'https://[email protected]/1337',
77
defaultIntegrations: false,
8-
integrations: [new Sentry.breadcrumbsIntegration()],
8+
integrations: [Sentry.breadcrumbsIntegration()],
99
sampleRate: 1,
1010
});

packages/browser/test/unit/index.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@ describe('SentryBrowser', () => {
270270

271271
expect(localBeforeSend).toHaveBeenCalledTimes(2);
272272
});
273-
il;
273+
274274
it('should use inboundfilter rules of bound client', async () => {
275275
const localBeforeSend = jest.fn();
276276
const options = getDefaultBrowserClientOptions({

0 commit comments

Comments
 (0)