We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 748494f commit 1038bbeCopy full SHA for 1038bbe
packages/tracing/src/index.bundle.ts
@@ -68,7 +68,7 @@ if (_window.Sentry && _window.Sentry.Integrations) {
68
const INTEGRATIONS = {
69
...windowIntegrations,
70
...BrowserIntegrations,
71
- ...BrowserTracing,
+ BrowserTracing,
72
};
73
74
export { INTEGRATIONS as Integrations };
packages/tracing/test/index.bundle.test.ts
@@ -0,0 +1,9 @@
1
+import { Integrations } from '../src/index.bundle';
2
+
3
+describe('Integrations export', () => {
4
+ it('is exported correctly', () => {
5
+ Object.values(Integrations).forEach(integration => {
6
+ expect(integration.id).toStrictEqual(expect.any(String));
7
+ });
8
9
+});
0 commit comments