File tree 2 files changed +26
-8
lines changed
2 files changed +26
-8
lines changed Original file line number Diff line number Diff line change @@ -217,7 +217,7 @@ describe('Router', () => {
217
217
} )
218
218
219
219
it ( 'navigates if the location does not exist' , async ( ) => {
220
- const { router } = await newRouter ( )
220
+ const { router } = await newRouter ( { routes : [ routes [ 0 ] ] } )
221
221
const spy = jest . fn ( ( to , from , next ) => next ( ) )
222
222
router . beforeEach ( spy )
223
223
await router . push ( '/idontexist' )
@@ -691,6 +691,26 @@ describe('Router', () => {
691
691
path : '/parent' ,
692
692
} )
693
693
} )
694
+
695
+ // https://github.com/vuejs/vue-router-next/issues/404
696
+ it ( 'works with named routes' , async ( ) => {
697
+ const history = createMemoryHistory ( )
698
+ const router = createRouter ( {
699
+ history,
700
+ routes : [
701
+ { name : 'foo' , path : '/foo' , redirect : '/bar' } ,
702
+ { path : '/bar' , component : components . Bar } ,
703
+ ] ,
704
+ } )
705
+ await expect ( router . push ( '/foo' ) ) . resolves . toEqual ( undefined )
706
+ const loc = router . currentRoute . value
707
+ expect ( loc . name ) . toBe ( undefined )
708
+ expect ( loc . path ) . toBe ( '/bar' )
709
+ expect ( loc . redirectedFrom ) . toMatchObject ( {
710
+ name : 'foo' ,
711
+ path : '/foo' ,
712
+ } )
713
+ } )
694
714
} )
695
715
696
716
describe ( 'base' , ( ) => {
Original file line number Diff line number Diff line change @@ -427,13 +427,11 @@ export function createRouter(options: RouterOptions): Router {
427
427
}
428
428
return pushWithRedirect (
429
429
assign (
430
- { } ,
431
- // having a path here would be a problem with relative locations but
432
- // at the same time it doesn't make sense for a redirect to be
433
- // relative (no name, no path) because it would create an infinite
434
- // loop. Since newTargetLocation must either have a `path` or a
435
- // `name`, this will never happen
436
- targetLocation ,
430
+ {
431
+ query : targetLocation . query ,
432
+ hash : targetLocation . hash ,
433
+ params : targetLocation . params ,
434
+ } ,
437
435
newTargetLocation ,
438
436
{
439
437
state : data ,
You can’t perform that action at this time.
0 commit comments