Merge branch 'knsv/new-shapes' of github.com:mermaid-js/mermaid into knsv/new-shapes

This commit is contained in:
Knut Sveidqvist
2024-09-18 15:37:40 +02:00

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 });
});