diff --git a/packages/angular/src/index.ts b/packages/angular/src/index.ts index fe4c1fd04c38..f0911eb9a440 100644 --- a/packages/angular/src/index.ts +++ b/packages/angular/src/index.ts @@ -2,7 +2,7 @@ export type { ErrorHandlerOptions } from './errorhandler'; export * from '@sentry/browser'; -export { init } from './sdk'; +export { init, getDefaultIntegrations } from './sdk'; export { createErrorHandler, SentryErrorHandler } from './errorhandler'; export { browserTracingIntegration, diff --git a/packages/angular/src/sdk.ts b/packages/angular/src/sdk.ts index e47e06f6233b..344ba91183df 100755 --- a/packages/angular/src/sdk.ts +++ b/packages/angular/src/sdk.ts @@ -1,25 +1,52 @@ import { VERSION } from '@angular/core'; import type { BrowserOptions } from '@sentry/browser'; -import { getDefaultIntegrations, init as browserInit, setContext } from '@sentry/browser'; -import { applySdkMetadata } from '@sentry/core'; +import { + breadcrumbsIntegration, + globalHandlersIntegration, + httpContextIntegration, + linkedErrorsIntegration, +} from '@sentry/browser'; +import { init as browserInit, setContext } from '@sentry/browser'; +import { + applySdkMetadata, + dedupeIntegration, + functionToStringIntegration, + inboundFiltersIntegration, +} from '@sentry/core'; +import type { Integration } from '@sentry/types'; import { logger } from '@sentry/utils'; import { IS_DEBUG_BUILD } from './flags'; +/** + * Get the default integrations for the Angular SDK. + */ +export function getDefaultIntegrations(): Integration[] { + // Don't include the BrowserApiErrors integration as it interferes with the Angular SDK's `ErrorHandler`: + // BrowserApiErrors would catch certain errors before they reach the `ErrorHandler` and + // thus provide a lower fidelity error than what `SentryErrorHandler` + // (see errorhandler.ts) would provide. + // + // see: + // - https://github.com/getsentry/sentry-javascript/issues/5417#issuecomment-1453407097 + // - https://github.com/getsentry/sentry-javascript/issues/2744 + return [ + inboundFiltersIntegration(), + functionToStringIntegration(), + breadcrumbsIntegration(), + globalHandlersIntegration(), + linkedErrorsIntegration(), + dedupeIntegration(), + httpContextIntegration(), + ]; +} + /** * Inits the Angular SDK */ export function init(options: BrowserOptions): void { const opts = { - // Filter out BrowserApiErrors integration as it interferes with our Angular `ErrorHandler`: - // BrowserApiErrors would catch certain errors before they reach the `ErrorHandler` and thus provide a - // lower fidelity error than what `SentryErrorHandler` (see errorhandler.ts) would provide. - // see: - // - https://github.com/getsentry/sentry-javascript/issues/5417#issuecomment-1453407097 - // - https://github.com/getsentry/sentry-javascript/issues/2744 - defaultIntegrations: getDefaultIntegrations(options).filter(integration => { - return integration.name !== 'BrowserApiErrors'; - }), + defaultIntegrations: getDefaultIntegrations(), ...options, }; diff --git a/packages/angular/test/sdk.test.ts b/packages/angular/test/sdk.test.ts index 0f97b4e84026..54756fba72fe 100644 --- a/packages/angular/test/sdk.test.ts +++ b/packages/angular/test/sdk.test.ts @@ -1,6 +1,6 @@ import * as SentryBrowser from '@sentry/browser'; import { vi } from 'vitest'; -import { getDefaultIntegrations, init } from '../src/index'; +import { getDefaultIntegrations, init } from '../src/sdk'; describe('init', () => { it('sets the Angular version (if available) in the global scope', () => { @@ -14,39 +14,16 @@ describe('init', () => { expect(setContextSpy).toHaveBeenCalledWith('angular', { version: 14 }); }); - describe('filtering out the `BrowserApiErrors` integration', () => { - const browserInitSpy = vi.spyOn(SentryBrowser, 'init'); + it('does not include the BrowserApiErrors integration', () => { + const browserDefaultIntegrationsWithoutBrowserApiErrors = SentryBrowser.getDefaultIntegrations() + .filter(i => i.name !== 'BrowserApiErrors') + .map(i => i.name) + .sort(); - beforeEach(() => { - browserInitSpy.mockClear(); - }); + const angularDefaultIntegrations = getDefaultIntegrations() + .map(i => i.name) + .sort(); - it('filters if `defaultIntegrations` is not set', () => { - init({}); - - expect(browserInitSpy).toHaveBeenCalledTimes(1); - - const options = browserInitSpy.mock.calls[0][0] || {}; - expect(options.defaultIntegrations).not.toContainEqual(expect.objectContaining({ name: 'BrowserApiErrors' })); - }); - - it("doesn't filter if `defaultIntegrations` is set to `false`", () => { - init({ defaultIntegrations: false }); - - expect(browserInitSpy).toHaveBeenCalledTimes(1); - - const options = browserInitSpy.mock.calls[0][0] || {}; - expect(options.defaultIntegrations).toEqual(false); - }); - - it("doesn't filter if `defaultIntegrations` is overwritten", () => { - const defaultIntegrations = getDefaultIntegrations({}); - init({ defaultIntegrations }); - - expect(browserInitSpy).toHaveBeenCalledTimes(1); - - const options = browserInitSpy.mock.calls[0][0] || {}; - expect(options.defaultIntegrations).toEqual(defaultIntegrations); - }); + expect(angularDefaultIntegrations).toEqual(browserDefaultIntegrationsWithoutBrowserApiErrors); }); }); diff --git a/packages/browser/src/sdk.ts b/packages/browser/src/sdk.ts index fc621ba7355a..88411c082106 100644 --- a/packages/browser/src/sdk.ts +++ b/packages/browser/src/sdk.ts @@ -32,6 +32,10 @@ import { makeFetchTransport } from './transports/fetch'; /** Get the default integrations for the browser SDK. */ export function getDefaultIntegrations(_options: Options): Integration[] { + /** + * Note: Please make sure this stays in sync with Angular SDK, which re-exports + * `getDefaultIntegrations` but with an adjusted set of integrations. + */ return [ inboundFiltersIntegration(), functionToStringIntegration(),