Skip to content

Commit dcd7fbc

Browse files
committed
fix: replace no-explicit-any in test
1 parent e6c4181 commit dcd7fbc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/proxy.routing-config-reuse.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ describe("startProxy routing config reuse", () => {
2727
const customConfig: Parameters<typeof startProxy>[0]["routingConfig"] = {
2828
tiers: {
2929
SIMPLE: { primary: "test-model-simple", fallback: ["test-fallback-1"] },
30-
} as any,
30+
} as Record<string, { primary: string; fallback: string[] }>,
3131
};
3232

3333
// Start proxy again on same port — enters reuse path

0 commit comments

Comments
 (0)