@@ -12,7 +12,7 @@ import * as React from 'react';
12
12
import { IndexRoute , Route , Router , createMemoryHistory , createRoutes , match } from 'react-router-3' ;
13
13
14
14
import type { Match , Route as RouteType } from '../src/reactrouterv3' ;
15
- import { browserTracingReactRouterV3Integration } from '../src/reactrouterv3' ;
15
+ import { reactRouterV3BrowserTracingIntegration } from '../src/reactrouterv3' ;
16
16
import { reactRouterV3Instrumentation } from '../src/reactrouterv3' ;
17
17
18
18
// Have to manually set types because we are using package-alias
@@ -319,7 +319,7 @@ describe('browserTracingReactRouterV3', () => {
319
319
const client = createMockBrowserClient ( ) ;
320
320
setCurrentClient ( client ) ;
321
321
322
- client . addIntegration ( browserTracingReactRouterV3Integration ( { history, routes : instrumentationRoutes , match } ) ) ;
322
+ client . addIntegration ( reactRouterV3BrowserTracingIntegration ( { history, routes : instrumentationRoutes , match } ) ) ;
323
323
324
324
client . init ( ) ;
325
325
render ( < Router history = { history } > { routes } </ Router > ) ;
@@ -340,7 +340,7 @@ describe('browserTracingReactRouterV3', () => {
340
340
setCurrentClient ( client ) ;
341
341
342
342
const history = createMemoryHistory ( ) ;
343
- client . addIntegration ( browserTracingReactRouterV3Integration ( { history, routes : instrumentationRoutes , match } ) ) ;
343
+ client . addIntegration ( reactRouterV3BrowserTracingIntegration ( { history, routes : instrumentationRoutes , match } ) ) ;
344
344
345
345
client . init ( ) ;
346
346
render ( < Router history = { history } > { routes } </ Router > ) ;
@@ -378,7 +378,7 @@ describe('browserTracingReactRouterV3', () => {
378
378
setCurrentClient ( client ) ;
379
379
380
380
const history = createMemoryHistory ( ) ;
381
- client . addIntegration ( browserTracingReactRouterV3Integration ( { history, routes : instrumentationRoutes , match } ) ) ;
381
+ client . addIntegration ( reactRouterV3BrowserTracingIntegration ( { history, routes : instrumentationRoutes , match } ) ) ;
382
382
383
383
client . init ( ) ;
384
384
render ( < Router history = { history } > { routes } </ Router > ) ;
@@ -393,7 +393,7 @@ describe('browserTracingReactRouterV3', () => {
393
393
const client = createMockBrowserClient ( ) ;
394
394
395
395
const history = createMemoryHistory ( ) ;
396
- client . addIntegration ( browserTracingReactRouterV3Integration ( { history, routes : instrumentationRoutes , match } ) ) ;
396
+ client . addIntegration ( reactRouterV3BrowserTracingIntegration ( { history, routes : instrumentationRoutes , match } ) ) ;
397
397
398
398
client . init ( ) ;
399
399
const { container } = render ( < Router history = { history } > { routes } </ Router > ) ;
0 commit comments