Skip to content

Commit 3da0839

Browse files
authored
feat(v8/tracing): Delete BrowserTracing class (#10919)
With this PR and #10918 merged, we can move all of the browser tracing related code into `@sentry/browser`. That will allow us to delete `@sentry-internal/tracing` and stop publishing it. ref #9885
1 parent 0a0f733 commit 3da0839

File tree

4 files changed

+3
-458
lines changed

4 files changed

+3
-458
lines changed

dev-packages/browser-integration-tests/suites/tracing/browserTracingIntegrationShim/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ sentryTest(
3030

3131
expect(requestCount).toBe(0);
3232
expect(consoleMessages).toEqual([
33-
'You are using new BrowserTracing() even though this bundle does not include tracing.',
33+
'You are using browserTracingIntegration() even though this bundle does not include tracing.',
3434
]);
3535
},
3636
);

packages/integration-shims/src/BrowserTracing.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import { consoleSandbox } from '@sentry/utils';
99
export const browserTracingIntegrationShim = defineIntegration((_options?: unknown) => {
1010
consoleSandbox(() => {
1111
// eslint-disable-next-line no-console
12-
console.warn('You are using new BrowserTracing() even though this bundle does not include tracing.');
12+
console.warn('You are using browserTracingIntegration() even though this bundle does not include tracing.');
1313
});
1414

1515
return {

0 commit comments

Comments
 (0)