raviqqe/tasks

View on GitHub
src/infrastructure/react/Project.test.tsx

Summary

Maintainability
A
0 mins
Test Coverage
import { render } from "@testing-library/react";
import { it, expect } from "vitest";
import { Project } from "./Project.js";

it("renders", () => {
  expect(
    render(<Project project={{ archived: false, id: "", name: "" }} />)
      .container.firstChild,
  ).toMatchSnapshot();
});