This commit is contained in:
Sidharth Vinod
2023-04-26 00:20:00 +05:30
parent ec62c2bf5b
commit 8b18fd93f4
2 changed files with 21 additions and 1 deletions

View File

@@ -0,0 +1,19 @@
import { imgSnapshotTest } from '../../helpers/util.js';
describe('Zen UML', () => {
it('Basic Zen UML diagram', () => {
imgSnapshotTest(
`
zenuml
A.method() {
if(x) {
B.method() {
selfCall() { return X }
}
}
}
`,
{}
);
});
});