Skip to content

Commit

Permalink
Fix new shapes tests with new syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
ashishjain0512 committed Sep 18, 2024
1 parent be9123e commit 741072a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cypress/integration/rendering/newShapes.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 });
});
Expand Down

0 comments on commit 741072a

Please sign in to comment.