mirror of
https://github.com/oceanprotocol/market.git
synced 2024-11-15 01:34:57 +01:00
11 lines
299 B
TypeScript
11 lines
299 B
TypeScript
import React from 'react'
|
|
import { render } from '@testing-library/react'
|
|
import Home from '../../../src/components/pages/Home'
|
|
|
|
describe('Home', () => {
|
|
it('renders without crashing', () => {
|
|
const { container } = render(<Home />)
|
|
expect(container.firstChild).toBeInTheDocument()
|
|
})
|
|
})
|