1
0
mirror of https://github.com/oceanprotocol/market.git synced 2024-11-15 01:34:57 +01:00
market/tests/unit/pages/index.test.tsx

11 lines
299 B
TypeScript
Raw Normal View History

2020-05-07 08:03:30 +02:00
import React from 'react'
import { render } from '@testing-library/react'
2020-06-30 16:22:22 +02:00
import Home from '../../../src/components/pages/Home'
2020-05-07 08:03:30 +02:00
describe('Home', () => {
it('renders without crashing', () => {
const { container } = render(<Home />)
expect(container.firstChild).toBeInTheDocument()
})
})