e2e test case added

This commit is contained in:
RounakJoshi09
2023-10-22 21:12:04 +05:30
parent f92ad6307e
commit 58e9e5658b

View File

@@ -701,4 +701,21 @@ gitGraph TB:
{}
);
});
it('34: should render a simple gitgraph with cherry pick merge commit', () => {
imgSnapshotTest(
`gitGraph
commit id: "ZERO"
branch feature
branch release
checkout feature
commit id: "A"
commit id: "B"
checkout main
merge feature id: "M"
checkout release
cherry-pick id: "M" parent:"B"
`,
{}
);
});
});