Skip to content

Commit

Permalink
[SecuritySolution][Endpoint] Re-enable several skipped tests (#186073)
Browse files Browse the repository at this point in the history
## Summary

Re-enables skipped tests that were failing and were skipped because of
an Endpoint bug.

closes /issues/168427
closes /issues/168340
closes /issues/168719
closes /issues/168284
closes /issues/171444
closes /issues/170373
closes /issues/173464
closes /issues/173465

### Checklist

Delete any items that are not applicable to this PR.

- [ ] [Unit or functional
tests](https://www.elastic.co/guide/en/kibana/master/development-tests.html)
were updated or added to match the most common scenarios
- [ ] [Flaky Test
Runner](https://ci-stats.kibana.dev/trigger_flaky_test_runner/1) was
used on any tests changed
  • Loading branch information
ashokaditya authored Jun 12, 2024
1 parent 5ca2735 commit 6a2e5a4
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,7 @@ import { createEndpointHost } from '../../tasks/create_endpoint_host';
import { deleteAllLoadedEndpointData } from '../../tasks/delete_all_endpoint_data';
import { enableAllPolicyProtections } from '../../tasks/endpoint_policy';

// Failing: See https://github.com/elastic/kibana/issues/168427
describe.skip(
describe(
'Automated Response Actions',
{
tags: ['@ess', '@serverless'],
Expand Down Expand Up @@ -74,8 +73,7 @@ describe.skip(
login();
});

// FLAKY: https://github.com/elastic/kibana/issues/168340
describe.skip('From alerts', () => {
describe('From alerts', () => {
let ruleId: string;
let ruleName: string;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,7 @@ import { createEndpointHost } from '../../tasks/create_endpoint_host';
import { deleteAllLoadedEndpointData } from '../../tasks/delete_all_endpoint_data';
import { enableAllPolicyProtections } from '../../tasks/endpoint_policy';

// Failing: See https://github.com/elastic/kibana/issues/168719
// FLAKY: https://github.com/elastic/kibana/issues/168284
describe.skip('Endpoints page', { tags: ['@ess', '@serverless'] }, () => {
describe('Endpoints page', { tags: ['@ess', '@serverless'] }, () => {
let indexedPolicy: IndexedFleetEndpointPolicyResponse;
let policy: PolicyData;
let createdHost: CreateAndEnrollEndpointHostResponse;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,12 @@ import { enableAllPolicyProtections } from '../../../tasks/endpoint_policy';
import { createEndpointHost } from '../../../tasks/create_endpoint_host';
import { deleteAllLoadedEndpointData } from '../../../tasks/delete_all_endpoint_data';

// Failing: See https://github.com/elastic/kibana/issues/171444
describe.skip('Response console', { tags: ['@ess', '@serverless'] }, () => {
describe('Response console', { tags: ['@ess', '@serverless'] }, () => {
beforeEach(() => {
login();
});

// FLAKY: https://github.com/elastic/kibana/issues/170373
describe.skip('Execute operations:', () => {
describe('Execute operations:', () => {
const homeFilePath = process.env.CI || true ? '/home/vagrant' : `/home/ubuntu`;

let indexedPolicy: IndexedFleetEndpointPolicyResponse;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,7 @@ import { enableAllPolicyProtections } from '../../../tasks/endpoint_policy';
import { createEndpointHost } from '../../../tasks/create_endpoint_host';
import { deleteAllLoadedEndpointData } from '../../../tasks/delete_all_endpoint_data';

// Failing: See https://github.com/elastic/kibana/issues/173465
describe.skip('Response console', { tags: ['@ess', '@serverless'] }, () => {
describe('Response console', { tags: ['@ess', '@serverless'] }, () => {
let indexedPolicy: IndexedFleetEndpointPolicyResponse;
let policy: PolicyData;
let createdHost: CreateAndEnrollEndpointHostResponse;
Expand Down Expand Up @@ -62,8 +61,7 @@ describe.skip('Response console', { tags: ['@ess', '@serverless'] }, () => {
}
});

// FLAKY: https://github.com/elastic/kibana/issues/173464
describe.skip('Host Isolation:', () => {
describe('Host Isolation:', () => {
beforeEach(() => {
login();
});
Expand Down

0 comments on commit 6a2e5a4

Please sign in to comment.