@@ -16,10 +16,74 @@ jobs:
1616 - 'cypress/**/alerting-dashboards-plugin/**'
1717 - '.github/workflows/release-e2e-workflow-template.yml'
1818
19- tests :
19+ tests-acknowledge-alerts-modal :
2020 needs : changes
2121 if : ${{ needs.changes.outputs.tests == 'true' }}
2222 uses : ./.github/workflows/release-e2e-workflow-template.yml
2323 with :
24- test-name : Alerting
25- test-command : env CYPRESS_NO_COMMAND_LOG=1 yarn cypress:run-with-security --browser chromium --spec 'cypress/integration/plugins/alerting-dashboards-plugin/*'
24+ test-name : Alerting (acknowledge_alerts_modal_spec.js)
25+ test-command : env CYPRESS_NO_COMMAND_LOG=1 yarn cypress:run-with-security --browser chromium --spec 'cypress/integration/plugins/alerting-dashboards-plugin/acknowledge_alerts_modal_spec.js'
26+
27+ tests-alert :
28+ needs : changes
29+ if : ${{ needs.changes.outputs.tests == 'true' }}
30+ uses : ./.github/workflows/release-e2e-workflow-template.yml
31+ with :
32+ test-name : Alerting (alert_spec.js)
33+ test-command : env CYPRESS_NO_COMMAND_LOG=1 yarn cypress:run-with-security --browser chromium --spec 'cypress/integration/plugins/alerting-dashboards-plugin/alert_spec.js'
34+
35+ tests-alerts-dashboard-flyout :
36+ needs : changes
37+ if : ${{ needs.changes.outputs.tests == 'true' }}
38+ uses : ./.github/workflows/release-e2e-workflow-template.yml
39+ with :
40+ test-name : Alerting (alerts_dashboard_flyout_spec.js)
41+ test-command : env CYPRESS_NO_COMMAND_LOG=1 yarn cypress:run-with-security --browser chromium --spec 'cypress/integration/plugins/alerting-dashboards-plugin/alerts_dashboard_flyout_spec.js'
42+
43+ tests-bucket-level-monitor :
44+ needs : changes
45+ if : ${{ needs.changes.outputs.tests == 'true' }}
46+ uses : ./.github/workflows/release-e2e-workflow-template.yml
47+ with :
48+ test-name : Alerting (bucket_level_monitor_spec.js)
49+ test-command : env CYPRESS_NO_COMMAND_LOG=1 yarn cypress:run-with-security --browser chromium --spec 'cypress/integration/plugins/alerting-dashboards-plugin/bucket_level_monitor_spec.js'
50+
51+ tests-cluster-metrics-monitor :
52+ needs : changes
53+ if : ${{ needs.changes.outputs.tests == 'true' }}
54+ uses : ./.github/workflows/release-e2e-workflow-template.yml
55+ with :
56+ test-name : Alerting (cluster_metrics_monitor_spec.js)
57+ test-command : env CYPRESS_NO_COMMAND_LOG=1 yarn cypress:run-with-security --browser chromium --spec 'cypress/integration/plugins/alerting-dashboards-plugin/cluster_metrics_monitor_spec.js'
58+
59+ tests-composite-level-monitor :
60+ needs : changes
61+ if : ${{ needs.changes.outputs.tests == 'true' }}
62+ uses : ./.github/workflows/release-e2e-workflow-template.yml
63+ with :
64+ test-name : Alerting (composite_level_monitor_spec.js)
65+ test-command : env CYPRESS_NO_COMMAND_LOG=1 yarn cypress:run-with-security --browser chromium --spec 'cypress/integration/plugins/alerting-dashboards-plugin/composite_level_monitor_spec.js'
66+
67+ tests-document-level-monitor :
68+ needs : changes
69+ if : ${{ needs.changes.outputs.tests == 'true' }}
70+ uses : ./.github/workflows/release-e2e-workflow-template.yml
71+ with :
72+ test-name : Alerting (document_level_monitor_spec.js)
73+ test-command : env CYPRESS_NO_COMMAND_LOG=1 yarn cypress:run-with-security --browser chromium --spec 'cypress/integration/plugins/alerting-dashboards-plugin/document_level_monitor_spec.js'
74+
75+ tests-monitors-dashboard :
76+ needs : changes
77+ if : ${{ needs.changes.outputs.tests == 'true' }}
78+ uses : ./.github/workflows/release-e2e-workflow-template.yml
79+ with :
80+ test-name : Alerting (monitors_dashboard_spec.js)
81+ test-command : env CYPRESS_NO_COMMAND_LOG=1 yarn cypress:run-with-security --browser chromium --spec 'cypress/integration/plugins/alerting-dashboards-plugin/monitors_dashboard_spec.js'
82+
83+ tests-query-level-monitor :
84+ needs : changes
85+ if : ${{ needs.changes.outputs.tests == 'true' }}
86+ uses : ./.github/workflows/release-e2e-workflow-template.yml
87+ with :
88+ test-name : Alerting (query_level_monitor_spec.js)
89+ test-command : env CYPRESS_NO_COMMAND_LOG=1 yarn cypress:run-with-security --browser chromium --spec 'cypress/integration/plugins/alerting-dashboards-plugin/query_level_monitor_spec.js'
0 commit comments