mirror of
https://github.com/pds-nest/nest.git
synced 2024-11-22 13:04:19 +00:00
10 lines
298 B
JavaScript
10 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()
|
|
});
|