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-05-10 21:09:05 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-05-10 21:09:05 +0300
commit20a86e7f6fd58882025b1c85b21e891d75220da5 (patch)
tree31d400a3790b2b3650415e5caf1cabfbe8d9092e /spec/features/commits_spec.rb
parent04ac4180cb5ba0df460034c7e64862056fd498b3 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/features/commits_spec.rb')
-rw-r--r--spec/features/commits_spec.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/spec/features/commits_spec.rb b/spec/features/commits_spec.rb
index aacba6d2af8..c38ae0c2b0d 100644
--- a/spec/features/commits_spec.rb
+++ b/spec/features/commits_spec.rb
@@ -107,7 +107,7 @@ RSpec.describe 'Commits', feature_category: :source_code_management do
describe 'Cancel all builds' do
it 'cancels commit', :js, :sidekiq_might_not_need_inline do
visit pipeline_path(pipeline)
- click_on 'Cancel running'
+ click_on 'Cancel pipeline'
expect(page).to have_content 'canceled'
end
end
@@ -133,7 +133,7 @@ RSpec.describe 'Commits', feature_category: :source_code_management 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('Cancel pipeline')
expect(page).not_to have_link('Retry')
end
@@ -156,7 +156,7 @@ RSpec.describe 'Commits', feature_category: :source_code_management do
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('Cancel pipeline')
expect(page).not_to have_link('Retry')
end
end