318 B20 lines
Blame
1import { imgSnapshotTest } from '../../helpers/util.ts';
2
3describe('Zen UML', () => {
4 it('Basic Zen UML diagram', () => {
5 imgSnapshotTest(
6 `
7 zenuml
8 A.method() {
9 if(x) {
10 B.method() {
11 selfCall() { return X }
12 }
13 }
14 }
15 `,
16 {}
17 );
18 });
19});
20