luhmann/hired

View on GitHub
src/components/molecules/__tests__/EmptyList.spec.tsx

Summary

Maintainability
A
1 hr
Test Coverage
import * as React from 'react'
import { mount } from 'enzyme'

import { EmptyList } from '../'

describe('EmptyList', () => {
  it('should render', () => {
    const subject = mount(
      <EmptyList text="Hello World!" />
    )

    expect(subject).toMatchSnapshot()
  })
})