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>2020-11-20 21:09:37 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2020-11-20 21:09:37 +0300
commit4e5a71c197c67446f64ca11fc903403d3ae52983 (patch)
treea43763cc3a0abf697b80451afcb56069aae7bcbf /spec/features/alert_management
parent8738992b79824278b090f08e16945affc923ff6f (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/features/alert_management')
-rw-r--r--spec/features/alert_management/alert_management_list_spec.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/spec/features/alert_management/alert_management_list_spec.rb b/spec/features/alert_management/alert_management_list_spec.rb
index c2514d80474..37658f8c545 100644
--- a/spec/features/alert_management/alert_management_list_spec.rb
+++ b/spec/features/alert_management/alert_management_list_spec.rb
@@ -18,7 +18,7 @@ RSpec.describe 'Alert Management index', :js do
wait_for_requests
end
- context 'when a developer displays the alert list and the alert service is not enabled' do
+ context 'when a developer displays the alert list and alert integrations are not enabled' do
it 'shows the alert page title' do
expect(page).to have_content('Alerts')
end
@@ -38,8 +38,8 @@ RSpec.describe 'Alert Management index', :js do
end
end
- context 'when a developer displays the alert list and the alert service is enabled' do
- let_it_be(:alerts_service) { create(:alerts_service, project: project) }
+ context 'when a developer displays the alert list and an HTTP integration is enabled' do
+ let_it_be(:integration) { create(:alert_management_http_integration, project: project) }
it 'shows the alert page title' do
expect(page).to have_content('Alerts')