summaryrefslogtreecommitdiff
path: root/spec/features/projects/jobs_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/features/projects/jobs_spec.rb')
-rw-r--r--spec/features/projects/jobs_spec.rb8
1 files changed, 6 insertions, 2 deletions
diff --git a/spec/features/projects/jobs_spec.rb b/spec/features/projects/jobs_spec.rb
index befaf85fc1e..f0d41c1dd11 100644
--- a/spec/features/projects/jobs_spec.rb
+++ b/spec/features/projects/jobs_spec.rb
@@ -987,7 +987,9 @@ RSpec.describe 'Jobs', :clean_gitlab_redis_shared_state do
it 'renders message about job being stuck because of no runners with the specified tags' do
expect(page).to have_selector('[data-testid="job-stuck-with-tags"')
- expect(page).to have_content("This job is stuck because you don't have any active runners online or available with any of these tags assigned to them:")
+ expect(page).to have_content("This job is stuck because of one of the following problems. There are no active runners online, no runners for the ")
+ expect(page).to have_content("protected branch")
+ expect(page).to have_content(", or no runners that match all of the job's tags:")
end
end
@@ -997,7 +999,9 @@ RSpec.describe 'Jobs', :clean_gitlab_redis_shared_state do
it 'renders message about job being stuck because of no runners with the specified tags' do
expect(page).to have_selector('[data-testid="job-stuck-with-tags"')
- expect(page).to have_content("This job is stuck because you don't have any active runners online or available with any of these tags assigned to them:")
+ expect(page).to have_content("This job is stuck because of one of the following problems. There are no active runners online, no runners for the ")
+ expect(page).to have_content("protected branch")
+ expect(page).to have_content(", or no runners that match all of the job's tags:")
end
end