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

16 lines
314 B
TypeScript

import React from 'react'
import { render } from '@testing-library/react'
import Alert from './Alert'
describe('Alert', () => {
it('renders without crashing', async () => {
render(
<Alert
message={{ status: 'loading', text: 'Loading' }}
transactionHash="0xxxx"
/>
)
})
})