UsersListPage.test.tsx.snap 914 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. // Jest Snapshot v1, https://goo.gl/fbAQLP
  2. exports[`Render should render List page 1`] = `
  3. <Page
  4. navModel={
  5. Object {
  6. "main": Object {
  7. "text": "Configuration",
  8. },
  9. "node": Object {
  10. "text": "Users",
  11. },
  12. }
  13. }
  14. >
  15. <PageContents
  16. isLoading={false}
  17. >
  18. <Connect(UsersActionBar)
  19. onShowInvites={[Function]}
  20. showInvites={false}
  21. />
  22. <UsersTable
  23. onRemoveUser={[Function]}
  24. onRoleChange={[Function]}
  25. users={Array []}
  26. />
  27. </PageContents>
  28. </Page>
  29. `;
  30. exports[`Render should render component 1`] = `
  31. <Page
  32. navModel={
  33. Object {
  34. "main": Object {
  35. "text": "Configuration",
  36. },
  37. "node": Object {
  38. "text": "Users",
  39. },
  40. }
  41. }
  42. >
  43. <PageContents
  44. isLoading={true}
  45. >
  46. <Connect(UsersActionBar)
  47. onShowInvites={[Function]}
  48. showInvites={false}
  49. />
  50. </PageContents>
  51. </Page>
  52. `;