Sidharth Vinod 8b18fd93f4
Add test
2023-04-26 00:20:00 +05:30

20 lines
318 B
JavaScript

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 }
}
}
}
`,
{}
);
});
});