From b987d1333bc2485b1b97ebb0f5515b86a7d22acb Mon Sep 17 00:00:00 2001 From: Sean Li Date: Thu, 28 Mar 2024 04:24:49 -0700 Subject: [PATCH] try global tenant Signed-off-by: Sean Li --- .../plugins/gantt-chart-dashboards/gantt_ui.spec.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cypress/integration/plugins/gantt-chart-dashboards/gantt_ui.spec.js b/cypress/integration/plugins/gantt-chart-dashboards/gantt_ui.spec.js index ea448bbaf..607ce6b6f 100644 --- a/cypress/integration/plugins/gantt-chart-dashboards/gantt_ui.spec.js +++ b/cypress/integration/plugins/gantt-chart-dashboards/gantt_ui.spec.js @@ -57,7 +57,7 @@ describe('Dump test data', () => { describe('Save a gantt chart', { defaultCommandTimeout: 20000 }, () => { beforeEach(() => { - CURRENT_TENANT.newTenant = 'private'; + CURRENT_TENANT.newTenant = 'global'; cy.visit(`${BASE_PATH}/app/visualize#`); }); @@ -82,7 +82,7 @@ describe( { defaultCommandTimeout: 20000 }, () => { beforeEach(() => { - CURRENT_TENANT.newTenant = 'private'; + CURRENT_TENANT.newTenant = 'global'; cy.visit(`${BASE_PATH}/app/visualize#`); cy.get('.euiFieldSearch').focus().type(GANTT_VIS_NAME); cy.contains(GANTT_VIS_NAME).click({ force: true }); @@ -122,7 +122,7 @@ describe( describe('Configure panel settings', { defaultCommandTimeout: 20000 }, () => { beforeEach(() => { - CURRENT_TENANT.newTenant = 'private'; + CURRENT_TENANT.newTenant = 'global'; cy.visit(`${BASE_PATH}/app/visualize#`); cy.get('.euiFieldSearch').focus().type(GANTT_VIS_NAME); cy.contains(GANTT_VIS_NAME).click({ force: true });