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