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/admin/admin_hooks_spec.rb')
-rw-r--r--spec/features/admin/admin_hooks_spec.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/spec/features/admin/admin_hooks_spec.rb b/spec/features/admin/admin_hooks_spec.rb
index e6630e40147..363c152371e 100644
--- a/spec/features/admin/admin_hooks_spec.rb
+++ b/spec/features/admin/admin_hooks_spec.rb
@@ -105,8 +105,8 @@ RSpec.describe 'Admin::Hooks', feature_category: :integrations do
WebMock.stub_request(:post, system_hook.url)
visit admin_hooks_path
- find('.hook-test-button.dropdown').click
- click_link 'Push events'
+ click_button 'Test'
+ click_button 'Push events'
end
it { expect(page).to have_current_path(admin_hooks_path, ignore_query: true) }
@@ -141,8 +141,8 @@ RSpec.describe 'Admin::Hooks', feature_category: :integrations do
create(:merge_request, source_project: project)
visit admin_hooks_path
- find('.hook-test-button.dropdown').click
- click_link 'Merge request events'
+ click_button 'Test'
+ click_button 'Merge request events'
expect(page).to have_content 'Hook executed successfully'
end