ri7nz/Warpokex

View on GitHub
src/components/Loading.test.js

Summary

Maintainability
A
0 mins
Test Coverage
import React from 'react'
import Loading from 'components/Loading'

test('should render loading component correctly', async () => {
  const { container } = render(<Loading loading={true} duration={3000} />)
  expect(container).toMatchSnapshot()
})