Merge branch 'develop' into knsv/mindmap-refactoring

This commit is contained in:
darshanr0107
2025-09-02 20:09:55 +05:30
committed by GitHub
6 changed files with 37 additions and 3 deletions

View File

@@ -524,5 +524,18 @@ describe('Class diagram', () => {
`,
{}
);
it('should handle an empty class body with empty braces', () => {
imgSnapshotTest(
` classDiagram
class FooBase~T~ {}
class Bar {
+Zip
+Zap()
}
FooBase <|-- Ba
`,
{ flowchart: { defaultRenderer: 'elk' } }
);
});
});
});