Skip to content

Commit

Permalink
[8.x] Remove duped roles tests (#199757) (#199965)
Browse files Browse the repository at this point in the history
# Backport

This will backport the following commits from `main` to `8.x`:
- [Remove duped roles tests
(#199757)](#199757)

<!--- Backport version: 9.4.3 -->

### Questions ?
Please refer to the [Backport tool
documentation](https://github.com/sqren/backport)

<!--BACKPORT [{"author":{"name":"Ignacio
Rivas","email":"[email protected]"},"sourceCommit":{"committedDate":"2024-11-13T10:16:08Z","message":"Remove
duped roles tests
(#199757)","sha":"5067b41e6843c50085be9af14917ba6a5c911d0e","branchLabelMapping":{"^v9.0.0$":"main","^v8.17.0$":"8.x","^v(\\d+).(\\d+).\\d+$":"$1.$2"}},"sourcePullRequest":{"labels":["Team:Kibana
Management","release_note:skip","v9.0.0","backport:prev-minor","v8.17.0"],"title":"Remove
duped roles
tests","number":199757,"url":"https://github.com/elastic/kibana/pull/199757","mergeCommit":{"message":"Remove
duped roles tests
(#199757)","sha":"5067b41e6843c50085be9af14917ba6a5c911d0e"}},"sourceBranch":"main","suggestedTargetBranches":["8.x"],"targetPullRequestStates":[{"branch":"main","label":"v9.0.0","branchLabelMappingKey":"^v9.0.0$","isSourceBranch":true,"state":"MERGED","url":"https://github.com/elastic/kibana/pull/199757","number":199757,"mergeCommit":{"message":"Remove
duped roles tests
(#199757)","sha":"5067b41e6843c50085be9af14917ba6a5c911d0e"}},{"branch":"8.x","label":"v8.17.0","branchLabelMappingKey":"^v8.17.0$","isSourceBranch":false,"state":"NOT_CREATED"}]}]
BACKPORT-->

Co-authored-by: Ignacio Rivas <[email protected]>
  • Loading branch information
kibanamachine and sabarasaba authored Nov 13, 2024
1 parent 323eb99 commit 1271431
Showing 1 changed file with 0 additions and 22 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,27 +46,5 @@ export default ({ getPageObjects, getService }: FtrProviderContext) => {
await pageObjects.common.waitUntilUrlIncludes('/app/management/security/api_keys');
}).not.to.throwError();
});

// Skipped due to change in QA environment for role management and spaces
// TODO: revisit once the change is rolled out to all environments
describe.skip('Roles management card', () => {
it('should not be displayed by default', async () => {
await retry.waitFor('page to be visible', async () => {
return await testSubjects.exists('cards-navigation-page');
});
await pageObjects.svlManagementPage.assertRoleManagementCardDoesNotExist();
});
});

// Skipped due to change in QA environment for role management and spaces
// TODO: revisit once the change is rolled out to all environments
describe.skip('Organization members management card', () => {
it('should not be displayed by default', async () => {
await retry.waitFor('page to be visible', async () => {
return await testSubjects.exists('cards-navigation-page');
});
await pageObjects.svlManagementPage.assertOrgMembersManagementCardDoesNotExist();
});
});
});
};

0 comments on commit 1271431

Please sign in to comment.