Merge branch 'develop' into knsv/mindmap-refactoring

This commit is contained in:
darshanr0107
2025-08-07 13:58:19 +05:30
committed by GitHub
4 changed files with 27 additions and 0 deletions

View File

@@ -512,4 +512,17 @@ describe('Class diagram', () => {
);
});
});
it('should handle backticks for namespace and class names', () => {
imgSnapshotTest(
`
classDiagram
namespace \`A::B\` {
class \`IPC::Sender\`
}
RenderProcessHost --|> \`IPC::Sender\`
`,
{}
);
});
});