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.

Summary-test.tsx.snap 1.7KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. // Jest Snapshot v1, https://goo.gl/fbAQLP
  2. exports[`renders 1`] = `
  3. <section
  4. className="big-spacer-bottom"
  5. id="portfolio-summary"
  6. >
  7. <div
  8. className="big-spacer-bottom"
  9. >
  10. blabla
  11. </div>
  12. <ul
  13. className="portfolio-grid"
  14. >
  15. <li>
  16. <div
  17. className="portfolio-measure-secondary-value"
  18. >
  19. <Link
  20. onlyActiveOnIndex={false}
  21. style={Object {}}
  22. to={
  23. Object {
  24. "pathname": "/component_measures",
  25. "query": Object {
  26. "id": "foo",
  27. "metric": "projects",
  28. },
  29. }
  30. }
  31. >
  32. <Measure
  33. metricKey="projects"
  34. metricType="SHORT_INT"
  35. value="15"
  36. />
  37. </Link>
  38. </div>
  39. <div
  40. className="spacer-top text-muted"
  41. >
  42. projects
  43. </div>
  44. </li>
  45. <li>
  46. <div
  47. className="portfolio-measure-secondary-value"
  48. >
  49. <Link
  50. onlyActiveOnIndex={false}
  51. style={Object {}}
  52. to={
  53. Object {
  54. "pathname": "/component_measures",
  55. "query": Object {
  56. "id": "foo",
  57. "metric": "ncloc",
  58. },
  59. }
  60. }
  61. >
  62. <Measure
  63. metricKey="ncloc"
  64. metricType="SHORT_INT"
  65. value="1234"
  66. />
  67. </Link>
  68. </div>
  69. <div
  70. className="spacer-top text-muted"
  71. >
  72. metric.ncloc.name
  73. </div>
  74. </li>
  75. </ul>
  76. <div
  77. className="big-spacer-top"
  78. >
  79. <Connect(LanguageDistribution)
  80. distribution="java=13;js=17"
  81. width={260}
  82. />
  83. </div>
  84. </section>
  85. `;