Skip to content

Commit d05208b

Browse files
committed
fix: initial location with base
1 parent 447053b commit d05208b

File tree

3 files changed

+28
-12
lines changed

3 files changed

+28
-12
lines changed
+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
import { stripBase } from '../../src/history/common'
2+
import { createDom } from '../utils'
3+
4+
describe('History Location Utils', () => {
5+
beforeAll(() => {
6+
createDom()
7+
})
8+
9+
describe('stripBase', () => {
10+
it('returns the pathname if no base', () => {
11+
expect(stripBase('', '')).toBe('')
12+
expect(stripBase('/', '')).toBe('/')
13+
expect(stripBase('/thing', '')).toBe('/thing')
14+
})
15+
16+
it('returns the pathname without the base', () => {
17+
expect(stripBase('/base', '/base')).toBe('/')
18+
expect(stripBase('/base/', '/base')).toBe('/')
19+
expect(stripBase('/base/foo', '/base')).toBe('/foo')
20+
})
21+
})
22+
})

e2e/specs/encoding.js

+4-8
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ module.exports = {
1111
basic(browser) {
1212
browser
1313
.url(baseURL)
14+
// TODO: move this test to a different spec
15+
.assert.urlEquals(baseURL + '/')
1416
.waitForElementVisible('#app', 1000)
1517

1618
.click('li:nth-child(3) a')
@@ -20,18 +22,12 @@ module.exports = {
2022
.assert.containsText('#params', JSON.stringify({ id: '€uro' }, null, 2))
2123

2224
// check initial visit
23-
.url(baseURL + '/encoding/documents/%E2%82%ACuro')
25+
.url(baseURL + '/documents/%E2%82%ACuro')
2426
.waitForElementVisible('#app', 1000)
2527
.assert.containsText('#fullPath', '/documents/%E2%82%ACuro')
2628
.assert.containsText('#path', '/documents/%E2%82%ACuro')
27-
// .assert.containsText('#params', JSON.stringify({ id: '€uro' }, null, 2))
28-
// .assert.containsText('#params', JSON.stringify({ id: '€uro' }, null, 2))
29+
.assert.containsText('#params', JSON.stringify({ id: '€uro' }, null, 2))
2930

30-
browser
31-
.getText('#params', function(res) {
32-
this.assert.equal(res.value, JSON.stringify({ id: '€uro' }, null, 2))
33-
console.log(res.state)
34-
})
3531
.end()
3632
},
3733
}

src/history/common.ts

+2-4
Original file line numberDiff line numberDiff line change
@@ -152,10 +152,8 @@ export function stringifyURL(
152152
* @param base base to strip off
153153
*/
154154
export function stripBase(pathname: string, base: string): string {
155-
return (
156-
(base && pathname.indexOf(base) === 0 && pathname.replace(base, '')) ||
157-
pathname
158-
)
155+
if (!base || pathname.indexOf(base) !== 0) return pathname
156+
return pathname.replace(base, '') || '/'
159157
}
160158

161159
export function normalizeHistoryLocation(

0 commit comments

Comments
 (0)