1
0
mirror of https://github.com/kremalicious/blowfish.git synced 2024-06-28 00:27:45 +02:00
blowfish/tests/Layout.test.jsx

11 lines
298 B
React
Raw Normal View History

import React from 'react'
2020-02-25 20:40:46 +01:00
import { render } from '@testing-library/react'
import Layout from '../src/renderer/Layout'
describe('Layout', () => {
2020-02-25 20:40:46 +01:00
it('renders correctly', () => {
const { container } = render(<Layout>Hello</Layout>)
expect(container.firstChild).toBeInTheDocument()
})
})