Merge pull request #4113 from mermaid-js/3192_invisible_edges

Adding the ability to use invisible edges
This commit is contained in:
pbrolin47
2023-02-20 14:40:43 +01:00
committed by GitHub
7 changed files with 47 additions and 0 deletions

View File

@@ -670,6 +670,17 @@ title: Simple flowchart
---
flowchart TD
A --> B
`,
{ titleTopMargin: 0 }
);
});
it('3192: It should be possieble to render flowcharts with invisisble edges', () => {
imgSnapshotTest(
`---
title: Simple flowchart with invisisble edges
---
flowchart TD
A ~~~ B
`,
{ titleTopMargin: 0 }
);