Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions cypress/integration/acknowledge_alerts_modal_spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,15 @@ describe('AcknowledgeAlertsModal', () => {
cy.createMonitor(sampleAlertsFlyoutBucketMonitor);
cy.createMonitor(sampleAlertsFlyoutQueryMonitor);

// Wait 1 minute for the test monitors to trigger alerts, then go to the 'Alerts by trigger' dashboard page to view alerts and dashboards to be ready
cy.wait(60000);

// Visit Alerting OpenSearch Dashboards
cy.visit(`${Cypress.env('opensearch_dashboards')}/app/${PLUGIN_NAME}#/monitors`);

// Confirm test monitors were created successfully
cy.contains(BUCKET_MONITOR, { timeout: TWENTY_SECONDS });
cy.contains(QUERY_MONITOR, { timeout: TWENTY_SECONDS });

// Wait 1 minute for the test monitors to trigger alerts, then go to the 'Alerts by trigger' dashboard page to view alerts
cy.wait(60000);
});

beforeEach(() => {
Expand Down
10 changes: 4 additions & 6 deletions opensearch_dashboards.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
{
"id": "alertingDashboards",
"version": "2.9.0.0",
"opensearchDashboardsVersion": "2.9.0",
"configPath": [
"opensearch_alerting"
],
"version": "2.10.0.0",
"opensearchDashboardsVersion": "2.10.0",
"configPath": ["opensearch_alerting"],
"requiredPlugins": [
"uiActions",
"dashboard",
Expand All @@ -18,4 +16,4 @@
],
"server": true,
"ui": true
}
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "opensearch-alerting-dashboards",
"version": "2.9.0.0",
"version": "2.10.0.0",
"description": "OpenSearch Dashboards Alerting Plugin",
"main": "index.js",
"license": "Apache-2.0",
Expand Down