@@ -36,6 +36,7 @@ const routes: RouteRecordRaw[] = [
36
36
{ path : '/p/:p' , name : 'Param' , component : components . Bar } ,
37
37
{ path : '/repeat/:r+' , name : 'repeat' , component : components . Bar } ,
38
38
{ path : '/to-p/:p' , redirect : to => `/p/${ to . params . p } ` } ,
39
+ { path : '/redirect-with-param/:p' , redirect : ( ) => `/` } ,
39
40
{ path : '/before-leave' , component : components . BeforeLeave } ,
40
41
{
41
42
path : '/parent' ,
@@ -624,6 +625,23 @@ describe('Router', () => {
624
625
} )
625
626
} )
626
627
628
+ it ( 'discard params on string redirect' , async ( ) => {
629
+ const history = createMemoryHistory ( )
630
+ const router = createRouter ( { history, routes } )
631
+ await expect ( router . push ( '/redirect-with-param/test' ) ) . resolves . toEqual (
632
+ undefined
633
+ )
634
+ expect ( router . currentRoute . value ) . toMatchObject ( {
635
+ params : { } ,
636
+ query : { } ,
637
+ hash : '' ,
638
+ redirectedFrom : expect . objectContaining ( {
639
+ fullPath : '/redirect-with-param/test' ,
640
+ params : { p : 'test' } ,
641
+ } ) ,
642
+ } )
643
+ } )
644
+
627
645
it ( 'allows object in redirect' , async ( ) => {
628
646
const history = createMemoryHistory ( )
629
647
const router = createRouter ( { history, routes } )
0 commit comments