From 256e81bcd2ec40af5650267da1c4317c68ed9745 Mon Sep 17 00:00:00 2001 From: darshanr0107 Date: Wed, 12 Nov 2025 12:04:49 +0530 Subject: [PATCH] fix: added E2E test on-behalf-of: @Mermaid-Chart --- cypress/integration/rendering/gitGraph.spec.js | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/cypress/integration/rendering/gitGraph.spec.js b/cypress/integration/rendering/gitGraph.spec.js index 42dc57439..d6e205501 100644 --- a/cypress/integration/rendering/gitGraph.spec.js +++ b/cypress/integration/rendering/gitGraph.spec.js @@ -1569,4 +1569,14 @@ gitGraph TB: {} ); }); + it('77: should render a gitGraph merging main into a newly created branch', () => { + imgSnapshotTest( + `gitGraph + commit + branch stable + checkout stable + merge main`, + {} + ); + }); });