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/helpers/ci/builds_helper_spec.rb')
-rw-r--r--spec/helpers/ci/builds_helper_spec.rb18
1 files changed, 1 insertions, 17 deletions
diff --git a/spec/helpers/ci/builds_helper_spec.rb b/spec/helpers/ci/builds_helper_spec.rb
index eabd40f3dd4..dcb775fb16d 100644
--- a/spec/helpers/ci/builds_helper_spec.rb
+++ b/spec/helpers/ci/builds_helper_spec.rb
@@ -2,7 +2,7 @@
require 'spec_helper'
-RSpec.describe Ci::BuildsHelper do
+RSpec.describe Ci::BuildsHelper, feature_category: :continuous_integration do
describe '#sidebar_build_class' do
using RSpec::Parameterized::TableSyntax
@@ -25,22 +25,6 @@ RSpec.describe Ci::BuildsHelper do
end
end
- describe '#javascript_build_options' do
- subject { helper.javascript_build_options }
-
- it 'returns build options' do
- project = assign_project
- ci_build = assign_build
-
- expect(subject).to eq({
- page_path: project_job_path(project, ci_build),
- build_status: ci_build.status,
- build_stage: ci_build.stage_name,
- log_state: ''
- })
- end
- end
-
describe '#build_failed_issue_options' do
subject { helper.build_failed_issue_options }