multiPointCreate.test.tsx.snap 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. // Jest Snapshot v1, https://goo.gl/fbAQLP
  2. exports[`multi point mode in linear elements arrow 1`] = `
  3. Object {
  4. "backgroundColor": "transparent",
  5. "fillStyle": "hachure",
  6. "height": 110,
  7. "id": "id0",
  8. "isDeleted": false,
  9. "lastCommittedPoint": Array [
  10. 70,
  11. 110,
  12. ],
  13. "opacity": 100,
  14. "points": Array [
  15. Array [
  16. 0,
  17. 0,
  18. ],
  19. Array [
  20. 20,
  21. 30,
  22. ],
  23. Array [
  24. 70,
  25. 110,
  26. ],
  27. ],
  28. "roughness": 1,
  29. "seed": 337897,
  30. "strokeColor": "#000000",
  31. "strokeWidth": 1,
  32. "type": "arrow",
  33. "version": 7,
  34. "versionNonce": 1116226695,
  35. "width": 70,
  36. "x": 30,
  37. "y": 30,
  38. }
  39. `;
  40. exports[`multi point mode in linear elements line 1`] = `
  41. Object {
  42. "backgroundColor": "transparent",
  43. "fillStyle": "hachure",
  44. "height": 110,
  45. "id": "id0",
  46. "isDeleted": false,
  47. "lastCommittedPoint": Array [
  48. 70,
  49. 110,
  50. ],
  51. "opacity": 100,
  52. "points": Array [
  53. Array [
  54. 0,
  55. 0,
  56. ],
  57. Array [
  58. 20,
  59. 30,
  60. ],
  61. Array [
  62. 70,
  63. 110,
  64. ],
  65. ],
  66. "roughness": 1,
  67. "seed": 337897,
  68. "strokeColor": "#000000",
  69. "strokeWidth": 1,
  70. "type": "line",
  71. "version": 7,
  72. "versionNonce": 1116226695,
  73. "width": 70,
  74. "x": 30,
  75. "y": 30,
  76. }
  77. `;