From bfeab9ec0b17d82bd42cfdd8eff6f8a0cfa7e5a2 Mon Sep 17 00:00:00 2001 From: Yash Singh Date: Tue, 16 Jul 2024 13:20:27 -0700 Subject: [PATCH] test: e2e left-right --- cypress/integration/rendering/gitGraph.spec.js | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/cypress/integration/rendering/gitGraph.spec.js b/cypress/integration/rendering/gitGraph.spec.js index 68b63de46..38714de5b 100644 --- a/cypress/integration/rendering/gitGraph.spec.js +++ b/cypress/integration/rendering/gitGraph.spec.js @@ -1533,4 +1533,22 @@ gitGraph TB: ); }); }); + it('75: should render a gitGraph with multiple tags on a merge commit', () => { + imgSnapshotTest( + `gitGraph + commit id: "ZERO" + branch develop + commit id:"A" + checkout main + commit id:"ONE" + checkout develop + commit id:"B" + checkout main + merge develop id:"Release 1.0" type:HIGHLIGHT tag: "SAML v2.0" tag: "OpenID v1.1" + commit id:"TWO" + checkout develop + commit id:"C"`, + {} + ); + }); });