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