DashboardsTable.test.tsx.snap 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. // Jest Snapshot v1, https://goo.gl/fbAQLP
  2. exports[`Render should render component 1`] = `
  3. <table
  4. className="filter-table"
  5. >
  6. <tbody />
  7. </table>
  8. `;
  9. exports[`Render should render table 1`] = `
  10. <table
  11. className="filter-table"
  12. >
  13. <tbody>
  14. <tr
  15. key="0-0"
  16. >
  17. <td
  18. className="width-1"
  19. >
  20. <i
  21. className="gicon gicon-dashboard"
  22. />
  23. </td>
  24. <td>
  25. <span>
  26. Graphite Carbon Metrics
  27. </span>
  28. </td>
  29. <td
  30. style={
  31. Object {
  32. "textAlign": "right",
  33. }
  34. }
  35. >
  36. <button
  37. className="btn btn-secondary btn-small"
  38. onClick={[Function]}
  39. >
  40. Import
  41. </button>
  42. </td>
  43. </tr>
  44. <tr
  45. key="0-1"
  46. >
  47. <td
  48. className="width-1"
  49. >
  50. <i
  51. className="gicon gicon-dashboard"
  52. />
  53. </td>
  54. <td>
  55. <a
  56. href=""
  57. >
  58. Graphite Carbon Metrics
  59. </a>
  60. </td>
  61. <td
  62. style={
  63. Object {
  64. "textAlign": "right",
  65. }
  66. }
  67. >
  68. <button
  69. className="btn btn-secondary btn-small"
  70. onClick={[Function]}
  71. >
  72. Update
  73. </button>
  74. <button
  75. className="btn btn-danger btn-small"
  76. onClick={[Function]}
  77. >
  78. <i
  79. className="fa fa-trash"
  80. />
  81. </button>
  82. </td>
  83. </tr>
  84. </tbody>
  85. </table>
  86. `;