10 lines
181 B
JavaScript
10 lines
181 B
JavaScript
import React from "react";
|
|
import { render } from "@testing-library/react";
|
|
import App from "./App";
|
|
|
|
describe("App", () => {
|
|
it("renders", () => {
|
|
render(<App />);
|
|
});
|
|
});
|