You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

List-test.tsx.snap 976B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. // Jest Snapshot v1, https://goo.gl/fbAQLP
  2. exports[`should render 1`] = `
  3. <div
  4. className="boxed-group boxed-group-inner"
  5. id="custom-metrics-list"
  6. >
  7. <table
  8. className="data zebra zebra-hover"
  9. >
  10. <tbody>
  11. <Item
  12. key="bar"
  13. metric={
  14. Object {
  15. "domain": "Coverage",
  16. "id": "4",
  17. "key": "bar",
  18. "name": "Bar",
  19. "type": "INT",
  20. }
  21. }
  22. onDelete={[MockFunction]}
  23. onEdit={[MockFunction]}
  24. />
  25. <Item
  26. key="foo"
  27. metric={
  28. Object {
  29. "id": "3",
  30. "key": "foo",
  31. "name": "Foo",
  32. "type": "INT",
  33. }
  34. }
  35. onDelete={[MockFunction]}
  36. onEdit={[MockFunction]}
  37. />
  38. </tbody>
  39. </table>
  40. </div>
  41. `;
  42. exports[`should render no results 1`] = `
  43. <div
  44. className="boxed-group boxed-group-inner"
  45. id="custom-metrics-list"
  46. >
  47. <p>
  48. no_results
  49. </p>
  50. </div>
  51. `;