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