mirror of
https://github.com/mermaid-js/mermaid.git
synced 2025-09-08 10:06:40 +02:00
20 lines
444 B
JavaScript
20 lines
444 B
JavaScript
/* eslint-env jest */
|
|
import { imgSnapshotTest } from '../../helpers/util';
|
|
|
|
describe('State diagram', () => {
|
|
it('should render a flowchart full of circles', () => {
|
|
imgSnapshotTest(
|
|
`
|
|
stateDiagram
|
|
State1: The state with a note
|
|
`,
|
|
{}
|
|
);
|
|
});
|
|
});
|
|
// note right of State1
|
|
// Important information! You\ncan write
|
|
// notes with multiple lines...
|
|
// Here is another line...
|
|
// end note
|