tldraw/__tests__/__snapshots__/dashes.test.ts.snap

58 lines
1.6 KiB
Text
Raw Normal View History

2021-06-22 18:13:16 +00:00
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`ellipse dash props renders dashed props on a circle correctly: large dashed circle dash props 1`] = `
Object {
"strokeDasharray": "16 17.333333333333332",
"strokeDashoffset": "8",
}
`;
exports[`ellipse dash props renders dashed props on a circle correctly: large dashed ellipse dash props 1`] = `
Object {
"strokeDasharray": "16 17.333333333333332",
"strokeDashoffset": "8",
}
`;
exports[`ellipse dash props renders dashed props on a circle correctly: small dashed circle dash props 1`] = `
Object {
"strokeDasharray": "8 8.666666666666666",
"strokeDashoffset": "4",
}
`;
exports[`ellipse dash props renders dashed props on a circle correctly: small dashed ellipse dash props 1`] = `
Object {
"strokeDasharray": "8 8.666666666666666",
"strokeDashoffset": "4",
}
`;
exports[`ellipse dash props renders dotted props on a circle correctly: large dotted circle dash props 1`] = `
Object {
2021-06-23 15:00:39 +00:00
"strokeDasharray": "0.08 16.586666666666666",
2021-06-22 18:13:16 +00:00
"strokeDashoffset": "0",
}
`;
exports[`ellipse dash props renders dotted props on a circle correctly: large dotted ellipse dash props 1`] = `
Object {
2021-06-23 15:00:39 +00:00
"strokeDasharray": "0.08 16.586666666666666",
2021-06-22 18:13:16 +00:00
"strokeDashoffset": "0",
}
`;
exports[`ellipse dash props renders dotted props on a circle correctly: small dotted circle dash props 1`] = `
Object {
2021-06-23 15:00:39 +00:00
"strokeDasharray": "0.04 8.293333333333333",
2021-06-22 18:13:16 +00:00
"strokeDashoffset": "0",
}
`;
exports[`ellipse dash props renders dotted props on a circle correctly: small dotted ellipse dash props 1`] = `
Object {
2021-06-23 15:00:39 +00:00
"strokeDasharray": "0.04 8.293333333333333",
2021-06-22 18:13:16 +00:00
"strokeDashoffset": "0",
}
`;