Files
mermaid/cypress/e2e/rendering/current.spec.js
MOREL Matthieu 648b15b00b Upgrade Cypress
2022-06-19 14:36:54 +02:00

21 lines
354 B
JavaScript

import { imgSnapshotTest } from '../../helpers/util';
describe('State diagram', () => {
it('should render a state with states in it', () => {
imgSnapshotTest(
`
stateDiagram
state PersonalizedCockpit {
Other
state Parent {
C
}
}
`,
{
logLevel: 0,
}
);
});
});