#3192 Adding docs and visual test

This commit is contained in:
Knut Sveidqvist
2023-02-20 11:19:23 +01:00
parent 3a71618a49
commit b6cac3a431
2 changed files with 20 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 }
);