mirror of
https://github.com/oceanprotocol/market.git
synced 2024-11-15 09:44:53 +01:00
21 lines
466 B
TypeScript
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>
|
|
)
|
|
})
|