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:
authorGitLab Bot <gitlab-bot@gitlab.com>2023-12-06 00:13:48 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-12-06 00:13:48 +0300
commit339b91536372cb04b4528725aae408145628ca69 (patch)
tree0f74e9659c715544da2ef72772756450a89d2b4b /spec/features
parentc8419b0227e069a7403f41589f1d0ef690e762f1 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/features')
-rw-r--r--spec/features/projects/jobs/permissions_spec.rb5
1 files changed, 4 insertions, 1 deletions
diff --git a/spec/features/projects/jobs/permissions_spec.rb b/spec/features/projects/jobs/permissions_spec.rb
index 73635480b95..7759875c2a5 100644
--- a/spec/features/projects/jobs/permissions_spec.rb
+++ b/spec/features/projects/jobs/permissions_spec.rb
@@ -89,7 +89,10 @@ RSpec.describe 'Project Jobs Permissions', feature_category: :groups_and_project
it_behaves_like 'recent job page details responds with status', 200 do
it 'renders job details', :js do
expect(page).to have_content(job.name)
- expect(page).to have_css '.log-line'
+
+ within_testid('job-log-content') do
+ expect(page).to have_content('Job succeeded')
+ end
end
end