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.

AlmIntegrationFeatureBox-test.tsx.snap 1.8KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. // Jest Snapshot v1, https://goo.gl/fbAQLP
  2. exports[`should render correctly: default 1`] = `
  3. <div
  4. className="boxed-group-inner display-flex-start width-30 spacer-right spacer-bottom bordered"
  5. >
  6. <CheckIcon
  7. className="little-spacer-top spacer-right"
  8. fill="#00aa00"
  9. />
  10. <div
  11. className="display-flex-column abs-height-100"
  12. >
  13. <h4>
  14. Foo
  15. </h4>
  16. <div
  17. className="spacer-top flex-1"
  18. >
  19. Foo bar...
  20. </div>
  21. <div
  22. className="spacer-top"
  23. >
  24. <em
  25. className="text-success"
  26. >
  27. settings.almintegration.feature.enabled
  28. </em>
  29. </div>
  30. </div>
  31. </div>
  32. `;
  33. exports[`should render correctly: inactive 1`] = `
  34. <div
  35. className="boxed-group-inner display-flex-start width-30 spacer-right spacer-bottom bordered bg-muted"
  36. >
  37. <ClearIcon
  38. className="little-spacer-top spacer-right"
  39. fill="#999"
  40. />
  41. <div
  42. className="display-flex-column abs-height-100"
  43. >
  44. <h4>
  45. Foo
  46. </h4>
  47. <div
  48. className="spacer-top flex-1"
  49. >
  50. Foo bar...
  51. </div>
  52. <div
  53. className="spacer-top"
  54. >
  55. <em
  56. className="text-muted"
  57. >
  58. settings.almintegration.feature.disabled
  59. </em>
  60. </div>
  61. </div>
  62. </div>
  63. `;
  64. exports[`should render correctly: inactive, with reason 1`] = `
  65. <div
  66. className="boxed-group-inner display-flex-start width-30 spacer-right spacer-bottom bordered bg-muted"
  67. >
  68. <ClearIcon
  69. className="little-spacer-top spacer-right"
  70. fill="#999"
  71. />
  72. <div
  73. className="display-flex-column abs-height-100"
  74. >
  75. <h4>
  76. Foo
  77. </h4>
  78. <div
  79. className="spacer-top flex-1"
  80. >
  81. Foo bar...
  82. </div>
  83. <div
  84. className="spacer-top"
  85. >
  86. <em
  87. className="text-muted"
  88. >
  89. Bar is foo'd
  90. </em>
  91. </div>
  92. </div>
  93. </div>
  94. `;