MetaPhase-Consulting/State-TalentMAP

View on GitHub
src/Components/BidTracker/PriorityCards/IsOnStandby/IsOnStandby.test.jsx

Summary

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

describe('IsOnStandbyComponent', () => {
  const bid = bidListObject.results[0];
  const deleteBid = () => {};

  const props = {
    bid,
    deleteBid,
  };

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

  it('accepts different props', () => {
    const newBid = { ...bid };
    newBid.status = 'closed';
    const wrapper = shallow(
      <IsOnStandby {...props} bid={newBid} />,
    );
    expect(wrapper).toBeDefined();
  });

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