test(sdk): keep model usage coverage focused

This commit is contained in:
Josh Lambert
2026-06-26 14:27:41 -04:00
parent 611fcb1617
commit 02633eb8cb
@@ -167,8 +167,6 @@ describe("Kilo PublicApi OpenAPI contract", () => {
const profile = response(KiloGatewayPaths.profile)?.properties
expect(profile?.balance).toEqual({ anyOf: [expect.objectContaining({ type: "object" }), { type: "null" }] })
expect(profile?.kiloPass).toEqual({ anyOf: [expect.objectContaining({ type: "object" }), { type: "null" }] })
const pass = profile?.kiloPass?.anyOf?.find((item) => item.type === "object")?.properties
expect(pass?.nextBillingAt).toEqual({ anyOf: [{ type: "string" }, { type: "null" }] })
expect(profile?.currentOrgId).toEqual({ anyOf: [{ type: "string" }, { type: "null" }] })
const auth = response(KiloGatewayPaths.authStatus)?.properties