@@ -10,7 +10,7 @@ import {
10
10
getHeaderContext ,
11
11
getMetaContent ,
12
12
} from '../../src/browser/browsertracing' ;
13
- import { defaultRequestInstrumentionOptions } from '../../src/browser/request' ;
13
+ import { defaultRequestInstrumentationOptions } from '../../src/browser/request' ;
14
14
import { defaultRoutingInstrumentation } from '../../src/browser/router' ;
15
15
import * as hubExtensions from '../../src/hubextensions' ;
16
16
import { DEFAULT_IDLE_TIMEOUT , IdleTransaction } from '../../src/idletransaction' ;
@@ -84,7 +84,7 @@ describe('BrowserTracing', () => {
84
84
routingInstrumentation : defaultRoutingInstrumentation ,
85
85
startTransactionOnLocationChange : true ,
86
86
startTransactionOnPageLoad : true ,
87
- ...defaultRequestInstrumentionOptions ,
87
+ ...defaultRequestInstrumentationOptions ,
88
88
} ) ;
89
89
} ) ;
90
90
@@ -131,7 +131,7 @@ describe('BrowserTracing', () => {
131
131
} ) ;
132
132
133
133
expect ( warnSpy ) . toHaveBeenCalledTimes ( 2 ) ;
134
- expect ( inst . options . tracingOrigins ) . toEqual ( defaultRequestInstrumentionOptions . tracingOrigins ) ;
134
+ expect ( inst . options . tracingOrigins ) . toEqual ( defaultRequestInstrumentationOptions . tracingOrigins ) ;
135
135
} ) ;
136
136
137
137
it ( 'warns and uses default tracing origins if empty array given' , ( ) => {
@@ -141,7 +141,7 @@ describe('BrowserTracing', () => {
141
141
} ) ;
142
142
143
143
expect ( warnSpy ) . toHaveBeenCalledTimes ( 2 ) ;
144
- expect ( inst . options . tracingOrigins ) . toEqual ( defaultRequestInstrumentionOptions . tracingOrigins ) ;
144
+ expect ( inst . options . tracingOrigins ) . toEqual ( defaultRequestInstrumentationOptions . tracingOrigins ) ;
145
145
} ) ;
146
146
147
147
it ( 'warns and uses default tracing origins if tracing origins are not defined' , ( ) => {
@@ -151,7 +151,7 @@ describe('BrowserTracing', () => {
151
151
} ) ;
152
152
153
153
expect ( warnSpy ) . toHaveBeenCalledTimes ( 2 ) ;
154
- expect ( inst . options . tracingOrigins ) . toEqual ( defaultRequestInstrumentionOptions . tracingOrigins ) ;
154
+ expect ( inst . options . tracingOrigins ) . toEqual ( defaultRequestInstrumentationOptions . tracingOrigins ) ;
155
155
} ) ;
156
156
157
157
it ( 'sets tracing origins if provided and does not warn' , ( ) => {
0 commit comments