Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'spec/features/commits_spec.rb')
-rw-r--r--spec/features/commits_spec.rb56
1 files changed, 3 insertions, 53 deletions
diff --git a/spec/features/commits_spec.rb b/spec/features/commits_spec.rb
index e600a99e3b6..db841ffc627 100644
--- a/spec/features/commits_spec.rb
+++ b/spec/features/commits_spec.rb
@@ -30,23 +30,7 @@ RSpec.describe 'Commits' do
project.add_reporter(user)
end
- describe 'Commit builds with jobs_tab_vue feature flag off' do
- before do
- stub_feature_flags(jobs_tab_vue: false)
- visit builds_project_pipeline_path(project, pipeline)
- end
-
- it { expect(page).to have_content pipeline.sha[0..7] }
-
- it 'contains generic commit status build' do
- page.within('.table-holder') do
- expect(page).to have_content "##{status.id}" # build id
- expect(page).to have_content 'generic' # build name
- end
- end
- end
-
- describe 'Commit builds with jobs_tab_vue feature flag on', :js do
+ describe 'Commit builds', :js do
before do
visit builds_project_pipeline_path(project, pipeline)
@@ -107,20 +91,7 @@ RSpec.describe 'Commits' do
end
end
- context 'Download artifacts with jobs_tab_vue feature flag off' do
- before do
- stub_feature_flags(jobs_tab_vue: false)
- create(:ci_job_artifact, :archive, file: artifacts_file, job: build)
- end
-
- it do
- visit pipeline_path(pipeline)
- click_on 'Download artifacts'
- expect(page.response_headers['Content-Type']).to eq(artifacts_file.content_type)
- end
- end
-
- context 'Download artifacts with jobs_tab_vue feature flag on', :js do
+ context 'Download artifacts', :js do
before do
create(:ci_job_artifact, :archive, file: artifacts_file, job: build)
end
@@ -149,28 +120,7 @@ RSpec.describe 'Commits' do
end
end
- context "when logged as reporter and with jobs_tab_vue feature flag off" do
- before do
- stub_feature_flags(jobs_tab_vue: false)
- project.add_reporter(user)
- create(:ci_job_artifact, :archive, file: artifacts_file, job: build)
- visit pipeline_path(pipeline)
- end
-
- it 'renders header', :js do
- expect(page).to have_content pipeline.sha[0..7]
- expect(page).to have_content pipeline.git_commit_message.gsub!(/\s+/, ' ')
- expect(page).to have_content pipeline.user.name
- expect(page).not_to have_link('Cancel running')
- expect(page).not_to have_link('Retry')
- end
-
- it do
- expect(page).to have_link('Download artifacts')
- end
- end
-
- context "when logged as reporter and with jobs_tab_vue feature flag on", :js do
+ context "when logged as reporter", :js do
before do
project.add_reporter(user)
create(:ci_job_artifact, :archive, file: artifacts_file, job: build)