react18-tools/turborepo-template

View on GitHub
lib/src/server/bars/bars1/bars1.test.tsx

Summary

Maintainability
A
45 mins
Test Coverage
import { cleanup, render } from "@testing-library/react";
import { afterEach, describe, test } from "vitest";
import { Bars1 } from "./bars1";

describe.concurrent("bars1", () => {
  afterEach(cleanup);

  test("check if renders without errors", () => {
    render(<Bars1 />);
  });
});