projectPlugins.spec.jsx.snap 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. // Jest Snapshot v1, https://goo.gl/fbAQLP
  2. exports[`ProjectPlugins renders 1`] = `
  3. <Panel>
  4. <PanelHeader>
  5. <div>
  6. Legacy Integration
  7. </div>
  8. <div>
  9. Enabled
  10. </div>
  11. </PanelHeader>
  12. <PanelBody
  13. direction="column"
  14. disablePadding={true}
  15. flex={false}
  16. >
  17. <PanelAlert
  18. type="warning"
  19. >
  20. <withConfig(AccessContainer)
  21. access={
  22. Array [
  23. "org:integrations",
  24. ]
  25. }
  26. >
  27. <Component />
  28. </withConfig(AccessContainer)>
  29. </PanelAlert>
  30. <PanelItem
  31. key="amazon-sqs"
  32. p={2}
  33. >
  34. <ProjectPluginRow
  35. assets={Array []}
  36. author={
  37. Object {
  38. "name": "Sentry Team",
  39. "url": "https://github.com/getsentry/sentry",
  40. }
  41. }
  42. canDisable={true}
  43. enabled={false}
  44. hasConfiguration={true}
  45. id="amazon-sqs"
  46. isHidden={false}
  47. name="Amazon SQS"
  48. params={
  49. Object {
  50. "orgId": "org-slug",
  51. "projectId": "project-slug",
  52. }
  53. }
  54. slug="amazon-sqs"
  55. version="8.23.0.dev0"
  56. />
  57. </PanelItem>
  58. <PanelItem
  59. key="github"
  60. p={2}
  61. >
  62. <ProjectPluginRow
  63. assets={Array []}
  64. author={
  65. Object {
  66. "name": "Sentry Team",
  67. "url": "https://github.com/getsentry/sentry",
  68. }
  69. }
  70. canDisable={false}
  71. enabled={true}
  72. hasConfiguration={false}
  73. id="github"
  74. isHidden={false}
  75. name="GitHub"
  76. params={
  77. Object {
  78. "orgId": "org-slug",
  79. "projectId": "project-slug",
  80. }
  81. }
  82. slug="github"
  83. version="8.23.0.dev0"
  84. />
  85. </PanelItem>
  86. </PanelBody>
  87. </Panel>
  88. `;