react18-tools/react-mouse-trail

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

Summary

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

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

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