MetaPhase-Consulting/State-TalentMAP

View on GitHub
src/Components/BidTracker/NotificationsSection/__snapshots__/NotificationsSection.test.jsx.snap

Summary

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

exports[`NotificationsSectionComponent matches snapshot 1`] = `
<div>
  <div
    className="usa-grid-full bid-tracker-notifications"
  >
    <Dismiss
      buttonClassName="dismiss-button"
      buttonTitle="Dismiss this alert"
      className="dismiss-alt"
      onDismiss={[Function]}
    >
      <AlertAlt
        isAriaLive={false}
        message="Your bid for [10035561] POLITICAL/ECONOMIC OFFICER (Curacao) has been approved by panel."
        title="Notification"
        type="success"
      />
    </Dismiss>
  </div>
</div>
`;

exports[`NotificationsSectionComponent matches snapshot when tags contains "declined" 1`] = `
<div>
  <div
    className="usa-grid-full bid-tracker-notifications"
  >
    <Dismiss
      buttonClassName="dismiss-button"
      buttonTitle="Dismiss this alert"
      className="dismiss-alt"
      onDismiss={[Function]}
    >
      <AlertAlt
        isAriaLive={false}
        message="Your bid for [10035561] POLITICAL/ECONOMIC OFFICER (Curacao) has been approved by panel."
        title="Notification"
        type="warning"
      />
    </Dismiss>
  </div>
</div>
`;