TeamSettings.test.tsx.snap 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. // Jest Snapshot v1, https://goo.gl/fbAQLP
  2. exports[`Render should render component 1`] = `
  3. <div>
  4. <h3
  5. className="page-sub-heading"
  6. >
  7. Team Settings
  8. </h3>
  9. <form
  10. className="gf-form-group"
  11. name="teamDetailsForm"
  12. onSubmit={[Function]}
  13. >
  14. <div
  15. className="gf-form max-width-30"
  16. >
  17. <Component>
  18. Name
  19. </Component>
  20. <Input
  21. className="gf-form-input max-width-22"
  22. onChange={[Function]}
  23. required={true}
  24. type="text"
  25. value="test"
  26. />
  27. </div>
  28. <div
  29. className="gf-form max-width-30"
  30. >
  31. <Component
  32. tooltip="This is optional and is primarily used to set the team profile avatar (via gravatar service)"
  33. >
  34. Email
  35. </Component>
  36. <Input
  37. className="gf-form-input max-width-22"
  38. onChange={[Function]}
  39. placeholder="team@email.com"
  40. type="email"
  41. value="test@test.com"
  42. />
  43. </div>
  44. <div
  45. className="gf-form-button-row"
  46. >
  47. <button
  48. className="btn btn-primary"
  49. type="submit"
  50. >
  51. Update
  52. </button>
  53. </div>
  54. </form>
  55. <SharedPreferences
  56. resourceUri="teams/1"
  57. />
  58. </div>
  59. `;