[Security Solution][Endpoint] Re-enable release e2e test (#174362)

## Summary

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

closes elastic/kibana/issues/172418
closes elastic/kibana/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
This commit is contained in:
Ash 2024-01-05 19:02:46 +01:00 committed by GitHub
parent 76ab8acc36
commit 963af9f0b7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 3 deletions

View file

@ -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;

View file

@ -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');
});
});
};