summaryrefslogtreecommitdiff
path: root/qa
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2023-04-20 18:08:30 +0000
committerGitLab Bot <gitlab-bot@gitlab.com>2023-04-20 18:08:30 +0000
commit4faa270685797bd689d2035efe7c7e724950eb82 (patch)
tree880f35cfcb4ef5dad3c82f701937d27d5cc85389 /qa
parentda23c5d563d68bfa5271b216209a7715c7ce3073 (diff)
downloadgitlab-ce-4faa270685797bd689d2035efe7c7e724950eb82.tar.gz
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'qa')
-rw-r--r--qa/qa/specs/features/browser_ui/8_monitor/incident_management/recovery_alert_closes_correct_incident_spec.rb12
1 files changed, 8 insertions, 4 deletions
diff --git a/qa/qa/specs/features/browser_ui/8_monitor/incident_management/recovery_alert_closes_correct_incident_spec.rb b/qa/qa/specs/features/browser_ui/8_monitor/incident_management/recovery_alert_closes_correct_incident_spec.rb
index aadca29de0c..695a73de078 100644
--- a/qa/qa/specs/features/browser_ui/8_monitor/incident_management/recovery_alert_closes_correct_incident_spec.rb
+++ b/qa/qa/specs/features/browser_ui/8_monitor/incident_management/recovery_alert_closes_correct_incident_spec.rb
@@ -8,12 +8,16 @@ module QA
Page::Project::Menu.perform(&:go_to_monitor_incidents)
Page::Project::Monitor::Incidents::Index.perform do |index|
# Open tab is displayed by default
- expect(index).to have_incident(title: unresolve_title)
- expect(index).to have_no_incident(title: resolve_title)
+ expect(index).to have_incident(title: unresolve_title),
+ 'Expected to see the unresolved incident in the Open tab'
+ expect(index).to have_no_incident(title: resolve_title),
+ 'Did not expect to see the resolved incident in the Open tab'
index.go_to_tab('Closed')
- expect(index).to have_incident(title: resolve_title)
- expect(index).to have_no_incident(title: unresolve_title)
+ expect(index).to have_incident(title: resolve_title),
+ 'Expected to see the resolved incident in the Closed tab'
+ expect(index).to have_no_incident(title: unresolve_title),
+ 'Did not expect to see the unresolved incident in the Closed tab'
end
end
end