Vagr9K/gatsby-material-starter

View on GitHub
src/pages/example.spec.tsx

Summary

Maintainability
A
0 mins
Test Coverage
import React from "react";
import { render } from "@testing-library/react";
import "@testing-library/jest-dom/extend-expect";
import ExamplePage from "./example";

describe("example page", () => {
  it("renders without errors", async () => {
    expect.assertions(0);

    render(<ExamplePage />);
  });
});