mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
Fix and unskip functional test (#96004)
This commit is contained in:
parent
2abd628f26
commit
574391985b
1 changed files with 2 additions and 3 deletions
|
@ -12,8 +12,7 @@ export default function ({ getService, getPageObjects }) {
|
|||
const config = getService('config');
|
||||
const log = getService('log');
|
||||
|
||||
// FAILING ES PROMOTION: https://github.com/elastic/kibana/issues/96001
|
||||
describe.skip('users', function () {
|
||||
describe('users', function () {
|
||||
before(async () => {
|
||||
log.debug('users');
|
||||
await PageObjects.settings.navigateTo();
|
||||
|
@ -91,7 +90,7 @@ export default function ({ getService, getPageObjects }) {
|
|||
expect(roles.apm_system.deprecated).to.be(false);
|
||||
|
||||
expect(roles.apm_user.reserved).to.be(true);
|
||||
expect(roles.apm_user.deprecated).to.be(false);
|
||||
expect(roles.apm_user.deprecated).to.be(true);
|
||||
|
||||
expect(roles.beats_admin.reserved).to.be(true);
|
||||
expect(roles.beats_admin.deprecated).to.be(false);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue