market/tests/unit/Layout.test.tsx

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>
)
})