Fix quarantined spec by waiting for requests

This commit is contained in:
Douwe Maan 2019-08-15 12:25:47 -05:00
parent df35d772c6
commit 3d045ea84f
No known key found for this signature in database
GPG key ID: 5976703F65143D36

View file

@ -3,18 +3,15 @@
require 'spec_helper' require 'spec_helper'
# This is a regression test for https://gitlab.com/gitlab-org/gitlab-ce/issues/37569 # This is a regression test for https://gitlab.com/gitlab-org/gitlab-ce/issues/37569
# Quarantine: https://gitlab.com/gitlab-org/gitlab-ce/issues/65329 describe 'Projects > Files > User browses a tree with a folder containing only a folder', :js do
describe 'Projects > Files > User browses a tree with a folder containing only a folder', :quarantine do
let(:project) { create(:project, :empty_repo) } let(:project) { create(:project, :empty_repo) }
let(:user) { project.owner } let(:user) { project.owner }
before do before do
# We need to disable the tree.flat_path provided by Gitaly to reproduce the issue
allow(Gitlab::GitalyClient).to receive(:feature_enabled?).and_return(false)
project.repository.create_dir(user, 'foo/bar', branch_name: 'master', message: 'Add the foo/bar folder') project.repository.create_dir(user, 'foo/bar', branch_name: 'master', message: 'Add the foo/bar folder')
sign_in(user) sign_in(user)
visit(project_tree_path(project, project.repository.root_ref)) visit(project_tree_path(project, project.repository.root_ref))
wait_for_requests
end end
it 'shows the nested folder on a single row' do it 'shows the nested folder on a single row' do