HabitatMap/AirCasting

View on GitHub
app/javascript/react/__test__/App.test.tsx

Summary

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

import { App } from "../App";

test("demo", () => {
  expect(true).toBe(true);
});

test("Renders the main page", () => {
  render(<App />);
  expect(true).toBeTruthy();
});