react18-tools/react-mouse-trail

View on GitHub
packages/shared/src/server/cards/cards.test.tsx

Summary

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

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

  test("check if renders without errors", () => {
    render(<Cards cards={[]} />);
  });
});