1
0
mirror of https://github.com/oceanprotocol/market.git synced 2024-11-15 01:34:57 +01:00
market/tests/unit/Layout.test.tsx

10 lines
241 B
TypeScript
Raw Normal View History

2020-05-07 08:03:30 +02:00
import React from 'react'
2020-06-30 14:19:27 +02:00
import testRender from './testRender'
import Layout from '../../src/components/Layout'
2020-05-07 08:03:30 +02:00
describe('Layout', () => {
2020-06-30 14:19:27 +02:00
testRender(
<Layout location={{ href: 'https://demo.com' } as Location}>Hello</Layout>
)
2020-05-07 08:03:30 +02:00
})