ipfs/src/__tests__/index.test.tsx

11 lines
279 B
TypeScript
Raw Normal View History

2019-12-08 17:27:44 +01:00
import React from 'react'
2021-09-12 17:00:43 +02:00
import { render } from '@testing-library/react'
2019-12-08 17:27:44 +01:00
import Home from '../pages'
describe('Home', () => {
it('renders without crashing', async () => {
const { container } = render(<Home />)
expect(container.firstChild).toBeInTheDocument()
})
})