1
0
Fork 0
traefik/webui/src/App.spec.tsx

10 lines
276 B
TypeScript

import App from './App'
import { render } from 'utils/test'
describe('<App />', () => {
test('renders without crashing the initial page (dashboard)', () => {
const { getByTestId } = render(<App />)
expect(getByTestId('proxy-main-nav')).toBeInTheDocument()
})
})