Skip to content

Commit

Permalink
functional test updates
Browse files Browse the repository at this point in the history
  • Loading branch information
legrego committed Jun 23, 2020
1 parent 5f262de commit 9c8e152
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -138,8 +138,7 @@ export default function ({ getPageObjects, getService }: FtrProviderContext) {
});
});

// FLAKY: https://github.com/elastic/kibana/issues/57377
describe.skip('no advanced_settings privileges', function () {
describe('no advanced_settings privileges', function () {
before(async () => {
await security.role.create('no_advanced_settings_privileges_role', {
elasticsearch: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,9 @@ export default function ({ getPageObjects, getService }: FtrProviderContext) {

it(`doesn't show Index Patterns in management side-nav`, async () => {
await PageObjects.settings.navigateTo();
await testSubjects.existOrFail('kibana');
await testSubjects.existOrFail('managementHome', {
timeout: config.get('timeouts.waitFor'),
});
await testSubjects.missingOrFail('indexPatterns');
});

Expand Down

0 comments on commit 9c8e152

Please sign in to comment.