From 824ee73bd1fe8de046ef81970bfa1149e8e72c3d Mon Sep 17 00:00:00 2001 From: Darshit Chanpura Date: Fri, 19 Apr 2024 11:57:58 -0400 Subject: [PATCH] Unskip auth and roles, and skip audit logs Signed-off-by: Darshit Chanpura --- .../e2e/multi-datasources/multi_datasources_enabled.spec.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/cypress/e2e/multi-datasources/multi_datasources_enabled.spec.js b/test/cypress/e2e/multi-datasources/multi_datasources_enabled.spec.js index 7ec18b4f1..61bb391d8 100644 --- a/test/cypress/e2e/multi-datasources/multi_datasources_enabled.spec.js +++ b/test/cypress/e2e/multi-datasources/multi_datasources_enabled.spec.js @@ -108,7 +108,7 @@ describe('Multi-datasources enabled', () => { .should('contain', 'successful for 9202'); }); - it.skip('Checks Auth Tab', () => { + it('Checks Auth Tab', () => { cy.visit(`http://localhost:5601/app/security-dashboards-plugin${externalDataSourceUrl}#/auth`); cy.get('.panel-header-count').first().invoke('text').should('contain', '(2)'); @@ -183,7 +183,7 @@ describe('Multi-datasources enabled', () => { cy.get('[data-test-subj="dataSourceViewButton"]').should('contain', 'Local cluster'); }); - it('Checks Audit Logs Tab', () => { + it.skip('Checks Audit Logs Tab', () => { cy.visit( `http://localhost:5601/app/security-dashboards-plugin${externalDataSourceUrl}#/auditLogging/edit/generalSettings` ); @@ -202,7 +202,7 @@ describe('Multi-datasources enabled', () => { cy.get('[data-test-subj="general-settings"]').should('contain', 'blah'); }); - it.skip('Checks Roles Tab', () => { + it('Checks Roles Tab', () => { Cypress.on('uncaught:exception', (err) => !err.message.includes('ResizeObserver')); // select remote data source cy.visit(`http://localhost:5601/app/security-dashboards-plugin${externalDataSourceUrl}#/roles`);