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.

dashes.ts.snap 1.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. // Jest Snapshot v1, https://goo.gl/fbAQLP
  2. exports[`ellipse dash props renders dashed props on a circle correctly: large dashed circle dash props 1`] = `
  3. Object {
  4. "strokeDasharray": "16 17.333333333333332",
  5. "strokeDashoffset": "8",
  6. }
  7. `;
  8. exports[`ellipse dash props renders dashed props on a circle correctly: large dashed ellipse dash props 1`] = `
  9. Object {
  10. "strokeDasharray": "16 17.333333333333332",
  11. "strokeDashoffset": "8",
  12. }
  13. `;
  14. exports[`ellipse dash props renders dashed props on a circle correctly: small dashed circle dash props 1`] = `
  15. Object {
  16. "strokeDasharray": "8 8.666666666666666",
  17. "strokeDashoffset": "4",
  18. }
  19. `;
  20. exports[`ellipse dash props renders dashed props on a circle correctly: small dashed ellipse dash props 1`] = `
  21. Object {
  22. "strokeDasharray": "8 8.666666666666666",
  23. "strokeDashoffset": "4",
  24. }
  25. `;
  26. exports[`ellipse dash props renders dotted props on a circle correctly: large dotted circle dash props 1`] = `
  27. Object {
  28. "strokeDasharray": "2 14.666666666666666",
  29. "strokeDashoffset": "0",
  30. }
  31. `;
  32. exports[`ellipse dash props renders dotted props on a circle correctly: large dotted ellipse dash props 1`] = `
  33. Object {
  34. "strokeDasharray": "2 14.666666666666666",
  35. "strokeDashoffset": "0",
  36. }
  37. `;
  38. exports[`ellipse dash props renders dotted props on a circle correctly: small dotted circle dash props 1`] = `
  39. Object {
  40. "strokeDasharray": "1 7.333333333333333",
  41. "strokeDashoffset": "0",
  42. }
  43. `;
  44. exports[`ellipse dash props renders dotted props on a circle correctly: small dotted ellipse dash props 1`] = `
  45. Object {
  46. "strokeDasharray": "1 7.333333333333333",
  47. "strokeDashoffset": "0",
  48. }
  49. `;