@@ -48,7 +48,10 @@ describe('Router Matcher', () => {
48
48
resolved . matched = record . map ( normalizeRouteRecord )
49
49
// allow passing an expect.any(Array)
50
50
else if ( Array . isArray ( resolved . matched ) )
51
- resolved . matched = resolved . matched . map ( normalizeRouteRecord as any )
51
+ resolved . matched = resolved . matched . map ( m => ( {
52
+ ...normalizeRouteRecord ( m as any ) ,
53
+ aliasOf : m . aliasOf ,
54
+ } ) )
52
55
}
53
56
54
57
// allows not passing params
@@ -60,7 +63,10 @@ describe('Router Matcher', () => {
60
63
61
64
const startCopy = {
62
65
...start ,
63
- matched : start . matched . map ( normalizeRouteRecord ) ,
66
+ matched : start . matched . map ( m => ( {
67
+ ...normalizeRouteRecord ( m ) ,
68
+ aliasOf : m . aliasOf ,
69
+ } ) ) ,
64
70
}
65
71
66
72
// make matched non enumerable
@@ -111,6 +117,38 @@ describe('Router Matcher', () => {
111
117
path : '/home' ,
112
118
name : 'Home' ,
113
119
components,
120
+ aliasOf : expect . objectContaining ( { name : 'Home' , path : '/' } ) ,
121
+ meta : { foo : true } ,
122
+ } ,
123
+ ] ,
124
+ }
125
+ )
126
+ } )
127
+
128
+ it . todo ( 'multiple aliases' )
129
+ it . todo ( 'resolve named child with parent with alias' )
130
+
131
+ it ( 'resolves the original record by name' , ( ) => {
132
+ assertRecordMatch (
133
+ {
134
+ path : '/' ,
135
+ alias : '/home' ,
136
+ name : 'Home' ,
137
+ components,
138
+ meta : { foo : true } ,
139
+ } ,
140
+ { name : 'Home' } ,
141
+ {
142
+ name : 'Home' ,
143
+ path : '/' ,
144
+ params : { } ,
145
+ meta : { foo : true } ,
146
+ matched : [
147
+ {
148
+ path : '/' ,
149
+ name : 'Home' ,
150
+ components,
151
+ aliasOf : undefined ,
114
152
meta : { foo : true } ,
115
153
} ,
116
154
] ,
@@ -133,7 +171,12 @@ describe('Router Matcher', () => {
133
171
name : 'nested' ,
134
172
params : { } ,
135
173
matched : [
136
- { path : '/p' , children, components } ,
174
+ {
175
+ path : '/p' ,
176
+ children,
177
+ components,
178
+ aliasOf : expect . objectContaining ( { path : '/parent' } ) ,
179
+ } ,
137
180
{ path : '/p/one' , name : 'nested' , components } ,
138
181
] ,
139
182
}
0 commit comments