fix(test): use double cast for GatewayClient in cron caller options test

ConnectParams schema type changed upstream; use 'as unknown as GatewayClient'
to safely construct the test fixture.
This commit is contained in:
Antonio 2026-03-20 11:23:34 -03:00
parent d8e55eebd9
commit d8f4873df4

View File

@ -16,7 +16,7 @@ function makeClient(scopes: string[]): GatewayClient {
},
scopes,
},
} as GatewayClient;
} as unknown as GatewayClient;
}
describe("resolveCronCallerOptions", () => {