You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ComponentBreadcrumbs-test.tsx.snap 971B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. // Jest Snapshot v1, https://goo.gl/fbAQLP
  2. exports[`renders 1`] = `
  3. <div
  4. className="component-name text-ellipsis"
  5. >
  6. <QualifierIcon
  7. className="spacer-right"
  8. qualifier="FIL"
  9. />
  10. <Connect(Organization)
  11. link={false}
  12. organizationKey="org"
  13. />
  14. <span
  15. title="proj-name"
  16. >
  17. proj-name
  18. <span
  19. className="slash-separator"
  20. />
  21. </span>
  22. <span
  23. title="comp-name"
  24. >
  25. comp-name
  26. </span>
  27. </div>
  28. `;
  29. exports[`renders with sub-project 1`] = `
  30. <div
  31. className="component-name text-ellipsis"
  32. >
  33. <QualifierIcon
  34. className="spacer-right"
  35. qualifier="FIL"
  36. />
  37. <Connect(Organization)
  38. link={false}
  39. organizationKey="org"
  40. />
  41. <span
  42. title="proj-name"
  43. >
  44. proj-name
  45. <span
  46. className="slash-separator"
  47. />
  48. </span>
  49. <span
  50. title="sub-proj-name"
  51. >
  52. sub-proj-name
  53. <span
  54. className="slash-separator"
  55. />
  56. </span>
  57. <span
  58. title="comp-name"
  59. >
  60. comp-name
  61. </span>
  62. </div>
  63. `;