From a340a0afafaf203954dfd501e3b945505dc682fe Mon Sep 17 00:00:00 2001 From: SuZhou-Joe Date: Thu, 2 Nov 2023 14:56:14 +0800 Subject: [PATCH] feat: add logs Signed-off-by: SuZhou-Joe --- .../dashboard_filtering_spec.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/cypress/integration/core-opensearch-dashboards/vanilla-opensearch-dashboards/dashboard_filtering_spec.js b/cypress/integration/core-opensearch-dashboards/vanilla-opensearch-dashboards/dashboard_filtering_spec.js index 5df26fcf1..6a6192a6e 100644 --- a/cypress/integration/core-opensearch-dashboards/vanilla-opensearch-dashboards/dashboard_filtering_spec.js +++ b/cypress/integration/core-opensearch-dashboards/vanilla-opensearch-dashboards/dashboard_filtering_spec.js @@ -328,23 +328,28 @@ describe('dashboard filtering', () => { describe('nested filtering', () => { before(() => { + cy.log('start nested filtering'); // Go to the Dashboards list page miscUtils.visitPage('app/dashboards/list'); + cy.log('miscUtils.visitPage'); // Click the "Create dashboard" button miscUtils.createNewDashboard(20000); + cy.log('miscUtils.createNewDashboard'); // Change the time to be between Jan 1 2018 and Apr 13, 2018 cy.setTopNavDate( 'Jan 1, 2018 @ 00:00:00.000', 'Apr 13, 2018 @ 00:00:00.000' ); + cy.log('cy.setTopNavDate'); dashboardPage.addDashboardPanels( 'Rendering Test: animal sounds pie', 'visualization', false ); + cy.log('dashboardPage.addDashboardPanels'); }); it('visualization saved with a query filters data', () => {