File tree 2 files changed +7
-0
lines changed
2 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -185,4 +185,9 @@ describe('Memory history', () => {
185
185
history . go ( 1 , false )
186
186
expect ( spy ) . not . toHaveBeenCalled ( )
187
187
} )
188
+
189
+ it ( 'handles a non-empty base' , ( ) => {
190
+ expect ( createMemoryHistory ( '/foo/' ) . base ) . toBe ( '/foo' )
191
+ expect ( createMemoryHistory ( '/foo' ) . base ) . toBe ( '/foo' )
192
+ } )
188
193
} )
Original file line number Diff line number Diff line change 6
6
NavigationType ,
7
7
NavigationDirection ,
8
8
NavigationInformation ,
9
+ normalizeBase ,
9
10
createHref ,
10
11
HistoryLocation ,
11
12
} from './common'
@@ -21,6 +22,7 @@ export function createMemoryHistory(base: string = ''): RouterHistory {
21
22
let listeners : NavigationCallback [ ] = [ ]
22
23
let queue : HistoryLocation [ ] = [ START ]
23
24
let position : number = 0
25
+ base = normalizeBase ( base )
24
26
25
27
function setLocation ( location : HistoryLocation ) {
26
28
position ++
You can’t perform that action at this time.
0 commit comments