20 lines
318 B
JavaScript
Raw Normal View History

2023-07-07 17:21:18 +05:30
import { imgSnapshotTest } from '../../helpers/util.ts';
2023-04-26 00:20:00 +05:30
describe('Zen UML', () => {
it('Basic Zen UML diagram', () => {
imgSnapshotTest(
`
zenuml
A.method() {
if(x) {
B.method() {
selfCall() { return X }
}
}
}
`,
{}
);
});
});