MetaPhase-Consulting/State-TalentMAP

View on GitHub
src/Components/BidListButton/__snapshots__/BidListButton.test.jsx.snap

Summary

Maintainability
Test Coverage
// Jest Snapshot v1, https://goo.gl/fbAQLP

exports[`BidListButtonComponent matches snapshot when context.client === true 1`] = `
<button
  className=" bid-list-button"
  disabled={false}
  onClick={[Function]}
  style={
    Object {
      "pointerEvents": "inherit",
    }
  }
>
  <span
    className="button-icon"
  >
    <FontAwesome
      name="plus-circle"
    />
  </span>
  <span>
    Add to Client Bid List
  </span>
</button>
`;

exports[`BidListButtonComponent matches snapshot when the user can add the position 1`] = `
<button
  className=" bid-list-button"
  disabled={false}
  onClick={[Function]}
  style={
    Object {
      "pointerEvents": "inherit",
    }
  }
>
  <span
    className="button-icon"
  >
    <FontAwesome
      name="plus-circle"
    />
  </span>
  <span>
    Add to Bid List
  </span>
</button>
`;

exports[`BidListButtonComponent matches snapshot when the user can remove the position 1`] = `
<button
  className=" bid-list-button"
  disabled={false}
  onClick={[Function]}
  style={
    Object {
      "pointerEvents": "inherit",
    }
  }
>
  <span
    className="button-icon"
  >
    <FontAwesome
      name="plus-circle"
    />
  </span>
  <span>
    Add to Bid List
  </span>
</button>
`;