react18-tools/react-mouse-trail

View on GitHub
packages/shared/src/client/demo/demo.test.tsx

Summary

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

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

  test("Dummy test - test if renders without errors", () => {
    render(<Demo />);
  });
});