Files
mermaid/cypress/integration/rendering/gitGraph.spec.js
2019-10-13 19:16:35 +02:00

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 }
);
});
});