1
0
mirror of https://github.com/kremalicious/ipfs.git synced 2024-06-17 18:03:28 +02:00
ipfs/src/__tests__/Loader.test.tsx

11 lines
307 B
TypeScript
Raw Normal View History

2019-12-08 17:27:44 +01:00
import React from 'react'
import { render } from '@testing-library/react'
import Loader from '../components/Loader'
describe('Loader', () => {
it('renders without crashing', () => {
const { container } = render(<Loader message="Hello" />)
expect(container.firstChild).toBeInTheDocument()
})
})