import { describe, expect, it } from "vitest";
import { render, screen } from "@testing-library/react";
import React from "react";
import { Button } from "./index";
describe("", () => {
it("renders", () => {
render();
const button = screen.getByRole("button", { name: "" });
expect(button.classList.contains("c__button")).toBe(true);
});
});