mirror of
https://github.com/mermaid-js/mermaid.git
synced 2025-01-14 06:43:25 +08:00
14 lines
236 B
JavaScript
14 lines
236 B
JavaScript
import { imgSnapshotTest } from '../../helpers/util.js';
|
|
|
|
describe('Sequencediagram', () => {
|
|
it('should render a simple info diagrams', () => {
|
|
imgSnapshotTest(
|
|
`
|
|
info
|
|
showInfo
|
|
`,
|
|
{}
|
|
);
|
|
});
|
|
});
|