@@ -56,7 +56,7 @@ describe('Sentry client SDK', () => {
5656 [ 'tracesSampleRate' , { tracesSampleRate : 0 } ] ,
5757 [ 'tracesSampler' , { tracesSampler : ( ) => 1.0 } ] ,
5858 [ 'enableTracing' , { enableTracing : true } ] ,
59- ] ) ( 'adds the BrowserTracing integration if tracing is enabled via %s' , ( _ , tracingOptions ) => {
59+ ] ) ( 'adds browserTracingIntegration if tracing is enabled via %s' , ( _ , tracingOptions ) => {
6060 init ( {
6161 dsn :
'https://[email protected] /1337' , 6262 ...tracingOptions ,
@@ -72,7 +72,7 @@ describe('Sentry client SDK', () => {
7272 it . each ( [
7373 [ 'enableTracing' , { enableTracing : false } ] ,
7474 [ 'no tracing option set' , { } ] ,
75- ] ) ( "doesn't add the BrowserTracing integration if tracing is disabled via %s" , ( _ , tracingOptions ) => {
75+ ] ) ( "doesn't add browserTracingIntegration if tracing is disabled via %s" , ( _ , tracingOptions ) => {
7676 init ( {
7777 dsn :
'https://[email protected] /1337' , 7878 ...tracingOptions ,
@@ -85,7 +85,7 @@ describe('Sentry client SDK', () => {
8585 expect ( browserTracing ) . toBeUndefined ( ) ;
8686 } ) ;
8787
88- it ( "doesn't add the BrowserTracing integration if `__SENTRY_TRACING__` is set to false" , ( ) => {
88+ it ( "doesn't add browserTracingIntegration if `__SENTRY_TRACING__` is set to false" , ( ) => {
8989 globalThis . __SENTRY_TRACING__ = false ;
9090
9191 init ( {
@@ -102,7 +102,7 @@ describe('Sentry client SDK', () => {
102102 delete globalThis . __SENTRY_TRACING__ ;
103103 } ) ;
104104
105- it ( 'Overrides the automatically default BrowserTracing instance with a a user-provided browserTracingIntegration instance' , ( ) => {
105+ it ( 'Overrides the automatically default browserTracingIntegration instance with a a user-provided browserTracingIntegration instance' , ( ) => {
106106 init ( {
107107 dsn :
'https://[email protected] /1337' , 108108 integrations : [
0 commit comments