MetaPhase-Consulting/State-TalentMAP

View on GitHub
src/Components/BidTracker/BidStep/BidStepIcon/PendingIcon/PendingIcon.test.jsx

Summary

Maintainability
A
0 mins
Test Coverage
import { shallow } from 'enzyme';
import toJSON from 'enzyme-to-json';
import PendingIcon from './PendingIcon';

describe('PendingIconComponent', () => {
  it('is defined', () => {
    const wrapper = shallow(
      <PendingIcon />,
    );
    expect(wrapper).toBeDefined();
  });

  it('matches snapshot', () => {
    const wrapper = shallow(
      <PendingIcon />,
    );
    expect(toJSON(wrapper)).toMatchSnapshot();
  });
});