Skip to content

Commit 4cc3093

Browse files
committed
feat(warn): better wording
#1530
1 parent 9f89b11 commit 4cc3093

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

packages/router/__tests__/warnings.spec.ts

+5-5
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ describe('warnings', () => {
6868
routes: [{ path: '/:p/:c', alias: ['/:p/c'], component }],
6969
})
7070
expect(
71-
'Alias "/:p/c" and the original record: "/:p/:c" should have the exact same param named "c"'
71+
'Alias "/:p/c" and the original record: "/:p/:c" must have the exact same param named "c"'
7272
).toHaveBeenWarned()
7373
})
7474

@@ -90,7 +90,7 @@ describe('warnings', () => {
9090
],
9191
})
9292
expect(
93-
`Absolute path "/:a/b" should have the exact same param named "b" as its parent "/:a/:b".`
93+
`Absolute path "/:a/b" must have the exact same param named "b" as its parent "/:a/:b".`
9494
).toHaveBeenWarned()
9595
})
9696

@@ -100,7 +100,7 @@ describe('warnings', () => {
100100
routes: [{ path: '/:p/:c', alias: ['/:p/:c+'], component }],
101101
})
102102
expect(
103-
'Alias "/:p/:c+" and the original record: "/:p/:c" should have the exact same param named "c"'
103+
'Alias "/:p/:c+" and the original record: "/:p/:c" must have the exact same param named "c"'
104104
).toHaveBeenWarned()
105105
})
106106

@@ -110,7 +110,7 @@ describe('warnings', () => {
110110
routes: [{ path: '/:p/c', alias: ['/:p/:c'], component }],
111111
})
112112
expect(
113-
'Alias "/:p/:c" and the original record: "/:p/c" should have the exact same param named "c"'
113+
'Alias "/:p/:c" and the original record: "/:p/c" must have the exact same param named "c"'
114114
).toHaveBeenWarned()
115115
})
116116

@@ -139,7 +139,7 @@ describe('warnings', () => {
139139

140140
it('warns if a non valid function is passed as a component', async () => {
141141
const Functional: FunctionalComponent = () => h('div', 'functional')
142-
// Functional should have a displayName to avoid the warning
142+
// Functional must have a displayName to avoid the warning
143143

144144
const router = createRouter({
145145
history: createMemoryHistory(),

packages/router/src/matcher/index.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -449,13 +449,13 @@ function checkSameParams(a: RouteRecordMatcher, b: RouteRecordMatcher) {
449449
for (const key of a.keys) {
450450
if (!key.optional && !b.keys.find(isSameParam.bind(null, key)))
451451
return warn(
452-
`Alias "${b.record.path}" and the original record: "${a.record.path}" should have the exact same param named "${key.name}"`
452+
`Alias "${b.record.path}" and the original record: "${a.record.path}" must have the exact same param named "${key.name}"`
453453
)
454454
}
455455
for (const key of b.keys) {
456456
if (!key.optional && !a.keys.find(isSameParam.bind(null, key)))
457457
return warn(
458-
`Alias "${b.record.path}" and the original record: "${a.record.path}" should have the exact same param named "${key.name}"`
458+
`Alias "${b.record.path}" and the original record: "${a.record.path}" must have the exact same param named "${key.name}"`
459459
)
460460
}
461461
}
@@ -491,7 +491,7 @@ function checkMissingParamsInAbsolutePath(
491491
for (const key of parent.keys) {
492492
if (!record.keys.find(isSameParam.bind(null, key)))
493493
return warn(
494-
`Absolute path "${record.record.path}" should have the exact same param named "${key.name}" as its parent "${parent.record.path}".`
494+
`Absolute path "${record.record.path}" must have the exact same param named "${key.name}" as its parent "${parent.record.path}".`
495495
)
496496
}
497497
}

0 commit comments

Comments
 (0)