dropdown-input.test.tsx 317 B

123456789
  1. import { describe, it } from "vitest";
  2. describe("DropdownInput", () => {
  3. it.todo("should render the input");
  4. it.todo("should render the placeholder");
  5. it.todo("should render the dropdown when clicked");
  6. it.todo("should select an option when clicked");
  7. it.todo("should filter the options when typing");
  8. });