1
0
mirror of https://github.com/kremalicious/blog.git synced 2025-02-14 21:10:25 +01:00

12 lines
284 B
TypeScript

import React from 'react'
import { render } from '@testing-library/react'
import Account from './Account'
describe('Account', () => {
it('renders without crashing', () => {
const { container } = render(<Account />)
expect(container.firstChild).toBeInTheDocument()
})
})