react18-tools/turborepo-template

View on GitHub
lib/src/server/dots/dots2/dots2.test.tsx

Summary

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

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

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