import { render } from "@testing-library/react";
import { axe } from "vitest-axe";

import { Skeleton } from "../";

const example = <Skeleton />;

it("is valid html", () => {
  const { container } = render(example);
  expect(container).toHTMLValidate();
});

it("is accessible", async () => {
  const { container } = render(example);
  expect(await axe(container)).toHaveNoViolations();
});
