@@ -68,7 +68,7 @@ describe('warnings', () => {
68
68
routes : [ { path : '/:p/:c' , alias : [ '/:p/c' ] , component } ] ,
69
69
} )
70
70
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"'
72
72
) . toHaveBeenWarned ( )
73
73
} )
74
74
@@ -90,7 +90,7 @@ describe('warnings', () => {
90
90
] ,
91
91
} )
92
92
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".`
94
94
) . toHaveBeenWarned ( )
95
95
} )
96
96
@@ -100,7 +100,7 @@ describe('warnings', () => {
100
100
routes : [ { path : '/:p/:c' , alias : [ '/:p/:c+' ] , component } ] ,
101
101
} )
102
102
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"'
104
104
) . toHaveBeenWarned ( )
105
105
} )
106
106
@@ -110,7 +110,7 @@ describe('warnings', () => {
110
110
routes : [ { path : '/:p/c' , alias : [ '/:p/:c' ] , component } ] ,
111
111
} )
112
112
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"'
114
114
) . toHaveBeenWarned ( )
115
115
} )
116
116
@@ -139,7 +139,7 @@ describe('warnings', () => {
139
139
140
140
it ( 'warns if a non valid function is passed as a component' , async ( ) => {
141
141
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
143
143
144
144
const router = createRouter ( {
145
145
history : createMemoryHistory ( ) ,
0 commit comments