Skip to content

Commit

Permalink
Unskip auth and roles, and skip audit logs
Browse files Browse the repository at this point in the history
Signed-off-by: Darshit Chanpura <[email protected]>
  • Loading branch information
DarshitChanpura committed Apr 19, 2024
1 parent b05a2f0 commit 824ee73
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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)');
Expand Down Expand Up @@ -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`
);
Expand All @@ -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`);
Expand Down

0 comments on commit 824ee73

Please sign in to comment.