mirror of
https://github.com/kremalicious/blowfish.git
synced 2024-10-31 23:55:17 +01:00
11 lines
298 B
JavaScript
11 lines
298 B
JavaScript
import React from 'react'
|
|
import { render } from '@testing-library/react'
|
|
import Layout from '../src/renderer/Layout'
|
|
|
|
describe('Layout', () => {
|
|
it('renders correctly', () => {
|
|
const { container } = render(<Layout>Hello</Layout>)
|
|
expect(container.firstChild).toBeInTheDocument()
|
|
})
|
|
})
|