Skip to content

Commit

Permalink
Reactive the tests effected by checkBoxes
Browse files Browse the repository at this point in the history
  • Loading branch information
fkanout committed Nov 23, 2021
1 parent 963b34e commit 3ade606
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export default ({ getService, getPageObjects }: FtrProviderContext) => {

const retry = getService('retry');

describe.skip('Observability alerts / Bulk actions', function () {
describe('Observability alerts / Bulk actions', function () {
this.tags('includeFirefox');
before(async () => {
await esArchiver.load('x-pack/test/functional/es_archives/observability/alerts');
Expand Down Expand Up @@ -84,7 +84,7 @@ export default ({ getService, getPageObjects }: FtrProviderContext) => {
});
});

describe.skip('When user has all priviledges for apm app', () => {
describe('When user has all priviledges for apm app', () => {
before(async () => {
await observability.users.setTestUserRole(
observability.users.defineBasicObservabilityRole({
Expand All @@ -108,7 +108,7 @@ export default ({ getService, getPageObjects }: FtrProviderContext) => {
});
});

describe.skip('when checkbox is clicked', async () => {
describe('when checkbox is clicked', async () => {
it('shows bulk actions container', async () => {
const apmCheckboxes =
await observability.alerts.bulkActions.getCheckboxSelectorPerProducer('apm');
Expand All @@ -126,7 +126,7 @@ export default ({ getService, getPageObjects }: FtrProviderContext) => {
});
});

describe.skip('When user has read permissions for logs', () => {
describe('When user has read permissions for logs', () => {
before(async () => {
await observability.users.setTestUserRole(
observability.users.defineBasicObservabilityRole({
Expand All @@ -145,7 +145,7 @@ export default ({ getService, getPageObjects }: FtrProviderContext) => {
});
});

describe.skip('When user has read permissions for apm', () => {
describe('When user has read permissions for apm', () => {
before(async () => {
await observability.users.setTestUserRole(
observability.users.defineBasicObservabilityRole({
Expand All @@ -164,7 +164,7 @@ export default ({ getService, getPageObjects }: FtrProviderContext) => {
});
});

describe.skip('When user has mixed permissions for observability apps', () => {
describe('When user has mixed permissions for observability apps', () => {
before(async () => {
await observability.users.setTestUserRole(
observability.users.defineBasicObservabilityRole({
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const OPEN_ALERTS_ROWS_COUNT = 33;
export default ({ getService }: FtrProviderContext) => {
const esArchiver = getService('esArchiver');

describe.skip('alert workflow status', function () {
describe('alert workflow status', function () {
this.tags('includeFirefox');

const observability = getService('observability');
Expand Down

0 comments on commit 3ade606

Please sign in to comment.