mirror of
https://github.com/oceanprotocol/market.git
synced 2024-11-15 01:34:57 +01:00
10 lines
241 B
TypeScript
10 lines
241 B
TypeScript
import React from 'react'
|
|
import testRender from './testRender'
|
|
import Layout from '../../src/components/Layout'
|
|
|
|
describe('Layout', () => {
|
|
testRender(
|
|
<Layout location={{ href: 'https://demo.com' } as Location}>Hello</Layout>
|
|
)
|
|
})
|