Skip to content

Commit

Permalink
[Security Solution][Endpoint] Re-enable responder FTR test (elastic#1…
Browse files Browse the repository at this point in the history
…72303)

## Summary

Re-enable responder FTR tests
fixes  elastic/issues/170435

related to 
- elastic/pull/169239
- elastic/pull/171711

**Flaky runner**
-
https://buildkite.com/elastic/kibana-flaky-test-suite-runner/builds/4112
x 100 ( all fail )

 _with tour popup fix_
-
https://buildkite.com/elastic/kibana-flaky-test-suite-runner/builds/4120
x 100 ( all pass )

### Checklist

- [x] [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
  • Loading branch information
ashokaditya authored Dec 1, 2023
1 parent 4fd75a9 commit a27f10e
Showing 1 changed file with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,7 @@ export default ({ getPageObjects, getService }: FtrProviderContext) => {
);
};

// FLAKY: https://github.com/elastic/kibana/issues/170435
describe.skip('Response Actions Responder', function () {
describe('Response Actions Responder', function () {
targetTags(this, ['@ess', '@serverless']);

let indexedData: IndexedHostsAndAlertsResponse;
Expand Down Expand Up @@ -197,8 +196,12 @@ export default ({ getPageObjects, getService }: FtrProviderContext) => {
await testSubjects.clickWhenNotDisabled('endpointResponseActions-action-item');
await testSubjects.existOrFail('consolePageOverlay');

await performResponderSanityChecks();
// close tour popup
if (await testSubjects.exists('timeline-save-tour-close-button')) {
await testSubjects.click('timeline-save-tour-close-button');
}

await performResponderSanityChecks();
await pageObjects.timeline.closeTimeline();
});
});
Expand Down

0 comments on commit a27f10e

Please sign in to comment.