Added test for divider alignment

This commit is contained in:
Ashish Jain
2024-07-01 11:06:45 +02:00
parent 771d3fcbbe
commit efd5cf1c67

View File

@@ -588,6 +588,20 @@ title: simple state diagram
stateDiagram-v2
[*] --> State1
State1 --> [*]
`,
{}
);
});
it('should align dividers correctly', () => {
imgSnapshotTest(
`stateDiagram-v2
state s2 {
s3
--
s4
--
55
}
`,
{}
);