import React, { useState } from "react" import { Button, Option, Select } from "../library/main" import { setupReacordTesting } from "./setup-testing" const { adapter, reply, assertMessages } = setupReacordTesting() test("single select", async () => { function TestSelect() { const [value, setValue] = useState() const [disabled, setDisabled] = useState(false) return ( <>