import { describe, bench } from "vitest"; import { Field, Form } from "houseform"; import { z } from "zod"; import { cleanup, fireEvent, getByTestId, render, } from "@testing-library/react"; import { Formik, Field as FormikField } from "formik"; import { toFormikValidationSchema } from "zod-formik-adapter"; import { FieldProps } from "formik/dist/Field"; import { Controller, useForm } from "react-hook-form"; import React, { useState } from "react"; import { zodResolver } from "@hookform/resolvers/zod"; const arr = Array.from({ length: 1000 }, (_, i) => i); function HouseFormOnMountBenchmark() { return (
); } function FormikOnMountBenchmark() { return (