From bde115dffc88be6ef6889ce51a9b25593cea067c Mon Sep 17 00:00:00 2001 From: Job - Date: Fri, 13 Sep 2024 12:46:04 +0000 Subject: [PATCH] Added test in comments --- tests/integration/pull_create_test.go | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/tests/integration/pull_create_test.go b/tests/integration/pull_create_test.go index 5a06a7817f661..9c3d255f6170d 100644 --- a/tests/integration/pull_create_test.go +++ b/tests/integration/pull_create_test.go @@ -199,3 +199,15 @@ func TestPullBranchDelete(t *testing.T) { session.MakeRequest(t, req, http.StatusOK) }) } + +/* +Setup: +Create a base repository on: user1/base-repo +Fork repository to: user2/fork-repo +Push extra commit to: user1/base-repo, which changes README.md +Create a PR on user2/fork-repo + +Test checks: +Check if pull request is created and has a changed README.md +*/ +// func TestPullCreatePrFromBaseToFork(t *testing.T) {}