1
0
mirror of https://github.com/oceanprotocol/market.git synced 2024-09-28 03:58:59 +02:00
market/tests/unit/Layout.test.tsx
2020-05-07 09:03:30 +03:00

15 lines
361 B
TypeScript

import React from 'react'
import { render } from '@testing-library/react'
import Layout from '../../src/Layout'
describe('Layout', () => {
it('renders without crashing', () => {
const { container } = render(
<Layout title="Hello" description="Hello">
Hello
</Layout>
)
expect(container.firstChild).toBeInTheDocument()
})
})