1
Fork 0
mirror of https://github.com/pds-nest/nest.git synced 2024-11-22 13:04:19 +00:00
pds-2021-g2-nest/nest_frontend/App.test.js

11 lines
298 B
JavaScript
Raw Normal View History

2021-05-13 22:10:54 +00:00
// 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()
});