flash_alerts.test.js.snap 577 B

12345678910111213141516171819202122232425262728293031323334
  1. // Jest Snapshot v1, https://goo.gl/fbAQLP
  2. exports[` 1`] = `
  3. <Alert
  4. className="foo-alert"
  5. />
  6. `;
  7. exports[`<Alert /> render() should be visible renders the alert 1`] = `
  8. <Alert
  9. className="foo-alert"
  10. >
  11. <Message
  12. className="foo-alert"
  13. onDismiss={[Function]}
  14. >
  15. <div
  16. className="ui message foo-alert"
  17. >
  18. <Icon
  19. as="i"
  20. name="close"
  21. onClick={[Function]}
  22. >
  23. <i
  24. aria-hidden="true"
  25. className="close icon"
  26. onClick={[Function]}
  27. />
  28. </Icon>
  29. </div>
  30. </Message>
  31. </Alert>
  32. `;