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.

AlmBindingDefinitionFormField-test.tsx.snap 1.5KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. // Jest Snapshot v1, https://goo.gl/fbAQLP
  2. exports[`should render correctly 1`] = `
  3. <div
  4. className="modal-field"
  5. >
  6. <label
  7. className="display-flex-center"
  8. htmlFor="key"
  9. >
  10. settings.almintegration.form.key
  11. <em
  12. className="mandatory spacer-right"
  13. >
  14. *
  15. </em>
  16. </label>
  17. <input
  18. className="input-super-large"
  19. disabled={false}
  20. id="key"
  21. maxLength={40}
  22. name="key"
  23. onChange={[Function]}
  24. size={50}
  25. type="text"
  26. value="key"
  27. />
  28. </div>
  29. `;
  30. exports[`should render correctly 2`] = `
  31. <div
  32. className="modal-field"
  33. >
  34. <label
  35. className="display-flex-center"
  36. htmlFor="key"
  37. >
  38. settings.almintegration.form.key
  39. <em
  40. className="mandatory spacer-right"
  41. >
  42. *
  43. </em>
  44. <HelpTooltip
  45. overlay="help"
  46. placement="right"
  47. />
  48. </label>
  49. <input
  50. className="input-super-large"
  51. disabled={false}
  52. id="key"
  53. maxLength={40}
  54. name="key"
  55. onChange={[Function]}
  56. size={50}
  57. type="text"
  58. value="key"
  59. />
  60. </div>
  61. `;
  62. exports[`should render correctly 3`] = `
  63. <div
  64. className="modal-field"
  65. >
  66. <label
  67. className="display-flex-center"
  68. htmlFor="key"
  69. >
  70. settings.almintegration.form.key
  71. <em
  72. className="mandatory spacer-right"
  73. >
  74. *
  75. </em>
  76. </label>
  77. <textarea
  78. className="settings-large-input"
  79. disabled={false}
  80. id="key"
  81. maxLength={40}
  82. onChange={[Function]}
  83. required={true}
  84. rows={5}
  85. value="key"
  86. />
  87. </div>
  88. `;