1
0
mirror of https://github.com/oceanprotocol/market.git synced 2024-09-28 12:08:59 +02:00
market/tests/unit/components/Layout.test.tsx
2020-07-10 13:19:04 +02:00

21 lines
466 B
TypeScript

import React from 'react'
import testRender from '../testRender'
import Layout from '../../../src/components/Layout'
import {
createHistory,
createMemorySource,
LocationProvider
} from '@reach/router'
describe('Layout', () => {
const history = createHistory(createMemorySource('/'))
testRender(
<LocationProvider history={history}>
<Layout title="Hello" uri={history.location.href}>
Hello
</Layout>
</LocationProvider>
)
})