import React from "react"; import { describe, test, expect } from "vitest"; import { render } from "@testing-library/react"; import { Select } from "."; test("matches snapshot", () => { const result = render( ); expect(result.asFragment()).toMatchSnapshot(); });