import { render, screen } from '@testing-library/react'
import { axe } from 'jest-axe'
import React from 'react'
import App from './App'
describe('App', () => {
test('renders learn react link', () => {
render()
const linkElement = screen.getByText(/learn react/iu)
expect(linkElement).toBeInTheDocument()
})
test('Should render accessibility guidelines (AXE)', async () => {
const { container } = render()
const results = await axe(container)
expect(results).toHaveNoViolations()
})
})