mirror of
https://github.com/OpenHands/OpenHands.git
synced 2025-12-26 13:52:43 +08:00
13 lines
460 B
TypeScript
13 lines
460 B
TypeScript
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",
|
|
);
|
|
});
|