| 123456789101112 |
- import { describe, it } from "vitest";
- describe("ModelSelector", () => {
- it.todo("should render the model selector");
- it.todo("should display and select the providers");
- it.todo("should display and select the models");
- it.todo("should disable the models if a provider is not selected");
- it.todo("should disable the inputs if isDisabled is true");
- it.todo(
- "should set the selected model and provider if the currentModel prop is set",
- );
- });
|