mirror of
https://github.com/pds-nest/nest.git
synced 2024-11-22 04:54:18 +00:00
11 lines
298 B
JavaScript
11 lines
298 B
JavaScript
// Link.react.test.js
|
|
import React from "react"
|
|
import "@testing-library/jest-dom/extend-expect"
|
|
import { render, screen } from "@testing-library/react"
|
|
import App from "./App"
|
|
|
|
|
|
test("App renders without exploding", () => {
|
|
render(<App/>)
|
|
expect(screen.getByRole("main")).toBeVisible()
|
|
})
|