Skip to content

Commit

Permalink
[Security Solution][Endpoint] Re-enable release e2e test (elastic#174362
Browse files Browse the repository at this point in the history
)

## Summary

Re-enables the release test that sometimes is flaky as updating metadata
for isolation status may be slow.
Should also close elastic/issues/172204 which is also flaky for
the same reason.

closes elastic/issues/172418
closes elastic/issues/172204


### Flaky test runner
-
https://buildkite.com/elastic/kibana-flaky-test-suite-runner/builds/4775
x 100 ( all green )

### Checklist

- [x] [Flaky Test
Runner](https://ci-stats.kibana.dev/trigger_flaky_test_runner/1) was
used on any tests changed
  • Loading branch information
ashokaditya authored and delanni committed Jan 11, 2024
1 parent 4d84124 commit 520f381
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,7 @@ import { enableAllPolicyProtections } from '../../../tasks/endpoint_policy';
import { createEndpointHost } from '../../../tasks/create_endpoint_host';
import { deleteAllLoadedEndpointData } from '../../../tasks/delete_all_endpoint_data';

// FLAKY: https://github.com/elastic/kibana/issues/172418
describe.skip('Response console', { tags: ['@ess', '@serverless'] }, () => {
describe('Response console', { 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 @@ -124,7 +124,7 @@ const checkEndpointListForIsolationStatus = (expectIsolated: boolean): void => {
cy.get('tbody tr')
.eq(0)
.within(() => {
cy.get('td').eq(1).should(chainer, 'Isolated');
cy.get('td', { timeout: 120000 }).eq(1).should(chainer, 'Isolated');
});
});
};
Expand Down

0 comments on commit 520f381

Please sign in to comment.