PluginListPage.test.tsx.snap 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. // Jest Snapshot v1, https://goo.gl/fbAQLP
  2. exports[`Render should render component 1`] = `
  3. <div>
  4. <PageHeader
  5. model={Object {}}
  6. />
  7. <div
  8. className="page-container page-body"
  9. >
  10. <OrgActionBar
  11. layoutMode="grid"
  12. linkButton={
  13. Object {
  14. "href": "https://grafana.com/plugins?utm_source=grafana_plugin_list",
  15. "title": "Find more plugins on Grafana.com",
  16. }
  17. }
  18. onSetLayoutMode={[Function]}
  19. searchQuery=""
  20. setSearchQuery={[Function]}
  21. />
  22. <PageLoader
  23. pageName="Plugins"
  24. />
  25. </div>
  26. </div>
  27. `;
  28. exports[`Render should render list 1`] = `
  29. <div>
  30. <PageHeader
  31. model={Object {}}
  32. />
  33. <div
  34. className="page-container page-body"
  35. >
  36. <OrgActionBar
  37. layoutMode="grid"
  38. linkButton={
  39. Object {
  40. "href": "https://grafana.com/plugins?utm_source=grafana_plugin_list",
  41. "title": "Find more plugins on Grafana.com",
  42. }
  43. }
  44. onSetLayoutMode={[Function]}
  45. searchQuery=""
  46. setSearchQuery={[Function]}
  47. />
  48. <PluginList
  49. layoutMode="grid"
  50. plugins={Array []}
  51. />
  52. </div>
  53. </div>
  54. `;