summaryrefslogtreecommitdiff
path: root/spec/features/commits_spec.rb
diff options
context:
space:
mode:
authorEric Eastwood <contact@ericeastwood.com>2017-11-20 13:48:33 -0600
committerEric Eastwood <contact@ericeastwood.com>2017-11-20 14:17:39 -0600
commit2d980cb71c952483da3cffe2ea368a6904c9a0a5 (patch)
treedfef7c523d0abc6fc09a700ffdb959c535ac2896 /spec/features/commits_spec.rb
parentd41e66cb632cf4a51428c87a07cbdd182e3e0697 (diff)
downloadgitlab-ce-2d980cb71c952483da3cffe2ea368a6904c9a0a5.tar.gz
Fix commits list 500 with multi-file editor new_repo cookie39821-fix-commits-list-with-multi-file-editor
Fix https://gitlab.com/gitlab-org/gitlab-ce/issues/39821 /<namespace>/<project>/commmits/master
Diffstat (limited to 'spec/features/commits_spec.rb')
-rw-r--r--spec/features/commits_spec.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/spec/features/commits_spec.rb b/spec/features/commits_spec.rb
index 479fb713297..1e83137f8a9 100644
--- a/spec/features/commits_spec.rb
+++ b/spec/features/commits_spec.rb
@@ -202,5 +202,12 @@ describe 'Commits' do
expect(page).to have_content("committed #{commit.committed_date.strftime("%b %d, %Y")}")
end
end
+
+ it 'shows the ref switcher with the multi-file editor enabled', :js do
+ set_cookie('new_repo', 'true')
+ visit project_commits_path(project, branch_name)
+
+ expect(find('.js-project-refs-dropdown')).to have_content branch_name
+ end
end
end