Skip to content

Commit 59182f4

Browse files
committed
Fix type errors in test
1 parent 35370c5 commit 59182f4

File tree

1 file changed

+8
-10
lines changed

1 file changed

+8
-10
lines changed

packages/router/__tests__/router-test.ts

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3707,6 +3707,7 @@ describe("a router", () => {
37073707
],
37083708
future: {
37093709
v7_normalizeFormMethod: true,
3710+
v7_prependBasename: false,
37103711
},
37113712
});
37123713
let A = await t.navigate("/child", {
@@ -15746,16 +15747,13 @@ describe("a router", () => {
1574615747
});
1574715748

1574815749
it("from an index route with a path", () => {
15749-
assertRoutingToParent(
15750-
[
15751-
{
15752-
id: "activeRoute",
15753-
path: "bar",
15754-
index: true,
15755-
},
15756-
],
15757-
"/foo"
15758-
);
15750+
assertRoutingToParent([
15751+
{
15752+
id: "activeRoute",
15753+
path: "bar",
15754+
index: true,
15755+
},
15756+
]);
1575915757
});
1576015758

1576115759
it("from a dynamic param route", () => {

0 commit comments

Comments
 (0)