Skip to content

Commit

Permalink
[Security Solution ] Fix flake in `/prebuilt_rules/fleet_integration.…
Browse files Browse the repository at this point in the history
…ts` API Integration test (#169791)

Fixes: #167056

## Summary

- Flake cannot be reproduced on 500 runs on flaky test runner.
- Latest fail points to [a `socket timeout` error](https://buildkite.com/elastic/kibana-on-merge/builds/36893#018b3d21-52ea-40a5-92a2-24cd2375b525) and not an issue intrinsic to the test; and a subsequent retry makes the test pass.
- **Unskipping test.**


## Flaky test runs

- https://buildkite.com/elastic/kibana-flaky-test-suite-runner/builds/3728
- https://buildkite.com/elastic/kibana-flaky-test-suite-runner/builds/3729 [CONTROL - NO CHANGES]
  • Loading branch information
jpdjere authored Oct 27, 2023
1 parent 92db128 commit 8bf2931
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,7 @@ export default ({ getService }: FtrProviderContext): void => {
const supertest = getService('supertest');
const log = getService('log');

// FLAKY: https://github.com/elastic/kibana/issues/167056
describe.skip('install_prebuilt_rules_from_real_package', () => {
describe('install_prebuilt_rules_from_real_package', () => {
beforeEach(async () => {
await deletePrebuiltRulesFleetPackage(supertest);
await deleteAllRules(supertest, log);
Expand Down

0 comments on commit 8bf2931

Please sign in to comment.