import { render, screen } from "@testing-library/react"; import { Form } from "./Form"; async function createFixture(props: any = {}) { const onSubmit = vi.fn(); const form = { type: "form", display: "form", tags: [], components: [ { label: "First name", placeholder: "Fill first name", widget: { type: "input" }, errorLabel: "", key: "firstName", inputType: "text", type: "textfield", id: "eqb1o4r", defaultValue: "" }, { label: "Submit form", showValidations: false, tableView: false, key: "submit", type: "button", input: true } ] }; render(
); return { onSubmit }; } describe("Form", () => { it("should render the Form", async () => { await createFixture({ "data-testid": "formio-container", data: [], model: "MyForm", groups: ["creation"], params: { env: "prod" } }); expect(screen.getByTestId("formio-container")).toBeInTheDocument(); expect(screen.getByText("First name")).toBeInTheDocument(); }); });