raviqqe/pomodoro

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

Summary

Maintainability
A
1 hr
Test Coverage
import { render } from "@testing-library/react";
import { expect, it } from "vitest";
import { ViewGraph } from "./ViewGraph.js";

it("renders", () => {
  expect(
    render(<ViewGraph viewGraph={() => {}} />).container.firstChild,
  ).toMatchSnapshot();
});