Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

MarketplaceAppContainer-test.tsx.snap 1.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. // Jest Snapshot v1, https://goo.gl/fbAQLP
  2. exports[`should render correctly: default 1`] = `
  3. <withRouter(App)
  4. currentEdition="community"
  5. fetchPendingPlugins={[Function]}
  6. location={
  7. Object {
  8. "action": "PUSH",
  9. "hash": "",
  10. "key": "key",
  11. "pathname": "/path",
  12. "query": Object {},
  13. "search": "",
  14. "state": Object {},
  15. }
  16. }
  17. pendingPlugins={
  18. Object {
  19. "installing": Array [],
  20. "removing": Array [],
  21. "updating": Array [],
  22. }
  23. }
  24. standaloneMode={true}
  25. updateCenterActive={false}
  26. />
  27. `;
  28. exports[`should render correctly: update center active 1`] = `
  29. <withRouter(App)
  30. currentEdition="community"
  31. fetchPendingPlugins={[Function]}
  32. location={
  33. Object {
  34. "action": "PUSH",
  35. "hash": "",
  36. "key": "key",
  37. "pathname": "/path",
  38. "query": Object {},
  39. "search": "",
  40. "state": Object {},
  41. }
  42. }
  43. pendingPlugins={
  44. Object {
  45. "installing": Array [],
  46. "removing": Array [],
  47. "updating": Array [],
  48. }
  49. }
  50. updateCenterActive={true}
  51. />
  52. `;