Skip to content

Commit 198a5bd

Browse files
authored
fix(history): ensure base is normalized in memory history (#1112)
1 parent da7a219 commit 198a5bd

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

__tests__/history/memory.spec.ts

+5
Original file line numberDiff line numberDiff line change
@@ -185,4 +185,9 @@ describe('Memory history', () => {
185185
history.go(1, false)
186186
expect(spy).not.toHaveBeenCalled()
187187
})
188+
189+
it('handles a non-empty base', () => {
190+
expect(createMemoryHistory('/foo/').base).toBe('/foo')
191+
expect(createMemoryHistory('/foo').base).toBe('/foo')
192+
})
188193
})

src/history/memory.ts

+2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ import {
66
NavigationType,
77
NavigationDirection,
88
NavigationInformation,
9+
normalizeBase,
910
createHref,
1011
HistoryLocation,
1112
} from './common'
@@ -21,6 +22,7 @@ export function createMemoryHistory(base: string = ''): RouterHistory {
2122
let listeners: NavigationCallback[] = []
2223
let queue: HistoryLocation[] = [START]
2324
let position: number = 0
25+
base = normalizeBase(base)
2426

2527
function setLocation(location: HistoryLocation) {
2628
position++

0 commit comments

Comments
 (0)