summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDouglas Barbosa Alexandre <dbalexandre@gmail.com>2019-01-25 17:53:56 +0000
committerYorick Peterse <yorickpeterse@gmail.com>2019-01-28 14:28:51 +0000
commit422ad5d124be08f23be3929b0fd1952a42a15e3a (patch)
treeef416e7e5844eeed3ee75491ce5312bdb470918a
parent6eda59b7507ea27f645619d189bb690d8ab28172 (diff)
downloadgitlab-ce-422ad5d124be08f23be3929b0fd1952a42a15e3a.tar.gz
Merge branch '56860-fix-spec-race-condition-upside-the-head' into 'master'
Fix a JS race in a spec Closes #56860 See merge request gitlab-org/gitlab-ce!24684 (cherry picked from commit b5e10cd3ac4e15e7421ebc9acc5d4f9ca9e8e3ea)
-rw-r--r--spec/features/projects/settings/user_changes_default_branch_spec.rb3
1 files changed, 3 insertions, 0 deletions
diff --git a/spec/features/projects/settings/user_changes_default_branch_spec.rb b/spec/features/projects/settings/user_changes_default_branch_spec.rb
index fcf05e04a5c..7dc18601f50 100644
--- a/spec/features/projects/settings/user_changes_default_branch_spec.rb
+++ b/spec/features/projects/settings/user_changes_default_branch_spec.rb
@@ -15,6 +15,9 @@ describe 'Projects > Settings > User changes default branch' do
let(:project) { create(:project, :repository, namespace: user.namespace) }
it 'allows to change the default branch', :js do
+ # Otherwise, running JS may overwrite our change to project_default_branch
+ wait_for_requests
+
select2('fix', from: '#project_default_branch')
page.within '#default-branch-settings' do