mirror of
https://github.com/mermaid-js/mermaid.git
synced 2025-01-21 06:53:17 +08:00
22 lines
406 B
JavaScript
22 lines
406 B
JavaScript
/* eslint-env jest */
|
|
import { imgSnapshotTest } from '../../helpers/util.js';
|
|
|
|
describe('Sequencediagram', () => {
|
|
it('should render a simple git graph', () => {
|
|
imgSnapshotTest(
|
|
`
|
|
gitGraph:
|
|
commit
|
|
branch newbranch
|
|
checkout newbranch
|
|
commit
|
|
commit
|
|
checkout master
|
|
commit
|
|
commit
|
|
merge newbranch`,
|
|
{ logLevel: 0 }
|
|
);
|
|
});
|
|
});
|