mermaid/cypress/integration/rendering/zenuml.spec.js

20 lines
318 B
JavaScript
Raw Normal View History

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