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

import { Tile } from "../";

const example = <Tile>tile</Tile>;

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

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