Newer
Older
CrypticOreWallet / src / __tests__ / App.tsx
@Drew Lemmy Drew Lemmy on 16 Feb 2021 280 bytes feat: add wallets!
import React from "react";
import { render, screen } from "@testing-library/react";
import App from "../App";

test("renders the app", async () => {
  render(<App />);

  const appLayout = await screen.findByTestId("site-app-layout");
  expect(appLayout).toBeInTheDocument();
});