luhmann/hired

View on GitHub
src/components/organisms/__tests__/Bootstrap.spec.tsx

Summary

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

import { Bootstrap } from '../'

describe('Bootstrap', () => {
  it('should render', () => {

    const subject = mount(
      <Bootstrap />
    )

    expect(subject).toMatchSnapshot()
  })

})