Merge from upstream new-shapes branch

This commit is contained in:
Ashish Jain
2024-09-19 13:28:34 +02:00
15 changed files with 286 additions and 246 deletions

View File

@@ -60,7 +60,7 @@ looks.forEach((look) => {
it(`without label`, () => {
let flowchartCode = `flowchart ${direction}\n`;
newShapesSet.forEach((newShape, index) => {
flowchartCode += ` n${index} --> n${index}${index}{ shape: ${newShape} }\n`;
flowchartCode += ` n${index} --> n${index}${index}@{ shape: ${newShape} }\n`;
});
imgSnapshotTest(flowchartCode, { look });
});