dashboard/src/test/app.spec.tsx
2021-06-23 12:25:10 +02:00

9 lines
259 B
TypeScript

import { render } from "@testing-library/react";
import App, { GlobalStyle } from "../app";
describe("app.tsx", () => {
it("Tests GlobalStyle", () => {
const { asFragment } = render(<GlobalStyle />);
expect(asFragment).toMatchSnapshot();
});
});