model-selector.test.tsx 460 B

123456789101112
  1. import { describe, it } from "vitest";
  2. describe("ModelSelector", () => {
  3. it.todo("should render the model selector");
  4. it.todo("should display and select the providers");
  5. it.todo("should display and select the models");
  6. it.todo("should disable the models if a provider is not selected");
  7. it.todo("should disable the inputs if isDisabled is true");
  8. it.todo(
  9. "should set the selected model and provider if the currentModel prop is set",
  10. );
  11. });