mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2026-07-25 09:24:54 +10:00
9 lines
318 B
TypeScript
9 lines
318 B
TypeScript
import { describe, expect, it } from "vitest";
|
|
import { updateProviderInput } from "./inputs";
|
|
|
|
describe("AI provider router input", () => {
|
|
it("does not default baseURL on switch-only updates", () => {
|
|
expect(updateProviderInput.parse({ id: "provider-1", enabled: false })).not.toHaveProperty("baseURL");
|
|
});
|
|
});
|