123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160 |
- // Jest Snapshot v1, https://goo.gl/fbAQLP
- exports[`add element to the scene when pointer dragging long enough arrow 1`] = `1`;
- exports[`add element to the scene when pointer dragging long enough arrow 2`] = `
- Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElementIds": null,
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 50,
- "id": "id0",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 30,
- 50,
- ],
- ],
- "roughness": 1,
- "seed": 337897,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "version": 3,
- "versionNonce": 449462985,
- "width": 30,
- "x": 30,
- "y": 20,
- }
- `;
- exports[`add element to the scene when pointer dragging long enough diamond 1`] = `1`;
- exports[`add element to the scene when pointer dragging long enough diamond 2`] = `
- Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElementIds": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 50,
- "id": "id0",
- "isDeleted": false,
- "opacity": 100,
- "roughness": 1,
- "seed": 337897,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "version": 2,
- "versionNonce": 1278240551,
- "width": 30,
- "x": 30,
- "y": 20,
- }
- `;
- exports[`add element to the scene when pointer dragging long enough ellipse 1`] = `1`;
- exports[`add element to the scene when pointer dragging long enough ellipse 2`] = `
- Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElementIds": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 50,
- "id": "id0",
- "isDeleted": false,
- "opacity": 100,
- "roughness": 1,
- "seed": 337897,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "ellipse",
- "version": 2,
- "versionNonce": 1278240551,
- "width": 30,
- "x": 30,
- "y": 20,
- }
- `;
- exports[`add element to the scene when pointer dragging long enough line 1`] = `
- Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElementIds": null,
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 50,
- "id": "id0",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 30,
- 50,
- ],
- ],
- "roughness": 1,
- "seed": 337897,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "line",
- "version": 3,
- "versionNonce": 449462985,
- "width": 30,
- "x": 30,
- "y": 20,
- }
- `;
- exports[`add element to the scene when pointer dragging long enough rectangle 1`] = `1`;
- exports[`add element to the scene when pointer dragging long enough rectangle 2`] = `
- Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElementIds": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 50,
- "id": "id0",
- "isDeleted": false,
- "opacity": 100,
- "roughness": 1,
- "seed": 337897,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "version": 2,
- "versionNonce": 1278240551,
- "width": 30,
- "x": 30,
- "y": 20,
- }
- `;
|