@@ -6,11 +6,20 @@ import {
6
6
MatcherLocationRaw ,
7
7
MatcherLocation ,
8
8
} from '../../src/types'
9
- import { MatcherLocationNormalizedLoose } from '../utils'
9
+ import { MatcherLocationNormalizedLoose , RouteRecordViewLoose } from '../utils'
10
10
import { mockWarn } from 'jest-mock-warn'
11
+ import { defineComponent } from '@vue/runtime-core'
11
12
12
- // @ts -expect-error
13
- const component : RouteComponent = null
13
+ const component : RouteComponent = defineComponent ( { } )
14
+
15
+ const baseRouteRecordNormalized : RouteRecordViewLoose = {
16
+ instances : { } ,
17
+ enterCallbacks : { } ,
18
+ aliasOf : undefined ,
19
+ components : null ,
20
+ path : '' ,
21
+ props : { } ,
22
+ }
14
23
15
24
// for normalized records
16
25
const components = { default : component }
@@ -232,6 +241,7 @@ describe('RouterMatcher.resolve', () => {
232
241
matched : [
233
242
{
234
243
path : '/p' ,
244
+ // @ts -expect-error: doesn't matter
235
245
children,
236
246
components,
237
247
aliasOf : expect . objectContaining ( { path : '/parent' } ) ,
@@ -573,6 +583,7 @@ describe('RouterMatcher.resolve', () => {
573
583
matched : [
574
584
{
575
585
path : '/parent' ,
586
+ // @ts -expect-error
576
587
children,
577
588
components,
578
589
aliasOf : undefined ,
@@ -1025,7 +1036,10 @@ describe('RouterMatcher.resolve', () => {
1025
1036
name : 'child-b' ,
1026
1037
path : '/foo/b' ,
1027
1038
params : { } ,
1028
- matched : [ Foo , { ...ChildB , path : `${ Foo . path } /${ ChildB . path } ` } ] ,
1039
+ matched : [
1040
+ Foo as any ,
1041
+ { ...ChildB , path : `${ Foo . path } /${ ChildB . path } ` } ,
1042
+ ] ,
1029
1043
}
1030
1044
)
1031
1045
} )
@@ -1045,7 +1059,7 @@ describe('RouterMatcher.resolve', () => {
1045
1059
name : 'nested' ,
1046
1060
path : '/foo' ,
1047
1061
params : { } ,
1048
- matched : [ Foo , { ...Nested , path : `${ Foo . path } ` } ] ,
1062
+ matched : [ Foo as any , { ...Nested , path : `${ Foo . path } ` } ] ,
1049
1063
}
1050
1064
)
1051
1065
} )
@@ -1072,7 +1086,7 @@ describe('RouterMatcher.resolve', () => {
1072
1086
path : '/foo' ,
1073
1087
params : { } ,
1074
1088
matched : [
1075
- Foo ,
1089
+ Foo as any ,
1076
1090
{ ...Nested , path : `${ Foo . path } ` } ,
1077
1091
{ ...NestedNested , path : `${ Foo . path } ` } ,
1078
1092
] ,
@@ -1095,7 +1109,7 @@ describe('RouterMatcher.resolve', () => {
1095
1109
path : '/foo/nested/a' ,
1096
1110
params : { } ,
1097
1111
matched : [
1098
- Foo ,
1112
+ Foo as any ,
1099
1113
{ ...Nested , path : `${ Foo . path } /${ Nested . path } ` } ,
1100
1114
{
1101
1115
...NestedChildA ,
@@ -1121,7 +1135,7 @@ describe('RouterMatcher.resolve', () => {
1121
1135
path : '/foo/nested/a' ,
1122
1136
params : { } ,
1123
1137
matched : [
1124
- Foo ,
1138
+ Foo as any ,
1125
1139
{ ...Nested , path : `${ Foo . path } /${ Nested . path } ` } ,
1126
1140
{
1127
1141
...NestedChildA ,
@@ -1147,7 +1161,7 @@ describe('RouterMatcher.resolve', () => {
1147
1161
path : '/foo/nested/a' ,
1148
1162
params : { } ,
1149
1163
matched : [
1150
- Foo ,
1164
+ Foo as any ,
1151
1165
{ ...Nested , path : `${ Foo . path } /${ Nested . path } ` } ,
1152
1166
{
1153
1167
...NestedChildA ,
@@ -1180,7 +1194,7 @@ describe('RouterMatcher.resolve', () => {
1180
1194
path : '/foo/nested/a/b' ,
1181
1195
params : { p : 'b' , n : 'a' } ,
1182
1196
matched : [
1183
- Foo ,
1197
+ Foo as any ,
1184
1198
{
1185
1199
...NestedWithParam ,
1186
1200
path : `${ Foo . path } /${ NestedWithParam . path } ` ,
@@ -1209,7 +1223,7 @@ describe('RouterMatcher.resolve', () => {
1209
1223
path : '/foo/nested/b/a' ,
1210
1224
params : { p : 'a' , n : 'b' } ,
1211
1225
matched : [
1212
- Foo ,
1226
+ Foo as any ,
1213
1227
{
1214
1228
...NestedWithParam ,
1215
1229
path : `${ Foo . path } /${ NestedWithParam . path } ` ,
@@ -1257,7 +1271,7 @@ describe('RouterMatcher.resolve', () => {
1257
1271
name : 'nested' ,
1258
1272
path : '/nested' ,
1259
1273
params : { } ,
1260
- matched : [ Parent , { ...Nested , path : `/nested` } ] ,
1274
+ matched : [ Parent as any , { ...Nested , path : `/nested` } ] ,
1261
1275
}
1262
1276
)
1263
1277
} )
@@ -1277,7 +1291,7 @@ describe('RouterMatcher.resolve', () => {
1277
1291
name : 'nested' ,
1278
1292
path : '/parent/nested' ,
1279
1293
params : { } ,
1280
- matched : [ Parent , { ...Nested , path : `/parent/nested` } ] ,
1294
+ matched : [ Parent as any , { ...Nested , path : `/parent/nested` } ] ,
1281
1295
}
1282
1296
)
1283
1297
} )
0 commit comments