1
0
Fork 0
blog/src/components/molecules/Web3Donation/Account.test.tsx

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()
})
})