Skip to content

Commit

Permalink
Remove dashbord_only_user role asserting from the reserved roles test.
Browse files Browse the repository at this point in the history
  • Loading branch information
azasypkin committed Aug 20, 2021
1 parent 9c24e8f commit 5956a7a
Showing 1 changed file with 4 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,14 @@

import expect from '@kbn/expect';
import { keyBy } from 'lodash';
export default function ({ getService, getPageObjects }) {
import { FtrProviderContext } from '../../ftr_provider_context';

export default function ({ getService, getPageObjects }: FtrProviderContext) {
const PageObjects = getPageObjects(['security', 'settings']);
const config = getService('config');
const log = getService('log');

// FAILING ES PROMOTION: https://github.com/elastic/kibana/issues/109349
describe.skip('users', function () {
describe('users', function () {
before(async () => {
log.debug('users');
await PageObjects.settings.navigateTo();
Expand Down Expand Up @@ -105,9 +106,6 @@ export default function ({ getService, getPageObjects }) {
expect(roles.kibana_user.reserved).to.be(true);
expect(roles.kibana_user.deprecated).to.be(true);

expect(roles.kibana_dashboard_only_user.reserved).to.be(true);
expect(roles.kibana_dashboard_only_user.deprecated).to.be(true);

expect(roles.kibana_system.reserved).to.be(true);
expect(roles.kibana_system.deprecated).to.be(false);

Expand Down

0 comments on commit 5956a7a

Please sign in to comment.