@@ -32,7 +32,7 @@ describe('warnings', () => {
32
32
history,
33
33
routes : [ { path : '/:p' , name : 'p' , component } ] ,
34
34
} )
35
- router . resolve ( { path : '/p' , params : { p : 'p' } } )
35
+ router . push ( { path : '/p' , params : { p : 'p' } } )
36
36
expect ( 'Path "/p" was passed with params' ) . toHaveBeenWarned ( )
37
37
} )
38
38
@@ -42,10 +42,26 @@ describe('warnings', () => {
42
42
history,
43
43
routes : [ { path : '/:p' , name : 'p' , component } ] ,
44
44
} )
45
- router . resolve ( { path : '/p' , name : 'p' , params : { p : 'p' } } )
45
+ router . push ( { path : '/p' , name : 'p' , params : { p : 'p' } } )
46
46
expect ( 'Path "/" was passed with params' ) . not . toHaveBeenWarned ( )
47
47
} )
48
48
49
+ it ( 'does not warn when redirecting from params' , async ( ) => {
50
+ const history = createMemoryHistory ( )
51
+ const router = createRouter ( {
52
+ history,
53
+ routes : [
54
+ {
55
+ path : '/p/:p' ,
56
+ redirect : to => ( { path : '/s' , query : { p : to . params . p } } ) ,
57
+ } ,
58
+ { path : '/s' , component } ,
59
+ ] ,
60
+ } )
61
+ router . push ( { path : '/p/abc' } )
62
+ expect ( 'was passed with params' ) . not . toHaveBeenWarned ( )
63
+ } )
64
+
49
65
it ( 'warns if an alias is missing params' , async ( ) => {
50
66
createRouter ( {
51
67
history : createMemoryHistory ( ) ,
0 commit comments