Skip to content

Commit

Permalink
[Cases] Unskip alerts tab functional test (elastic#174454)
Browse files Browse the repository at this point in the history
## Summary

PR elastic#172217 enabled the alerts
table for cases in the stack management. All of our functional tests use
stack cases to test the various features. Now that the table is enabled
in stack cases we can test alerts. This PR unkskips a test that tests
the alerts tab.

Flaky test runner:
https://buildkite.com/elastic/kibana-flaky-test-suite-runner/builds/4788

### Checklist

Delete any items that are not applicable to this PR.

- [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

### For maintainers

- [x] This was checked for breaking API changes and was [labeled
appropriately](https://www.elastic.co/guide/en/kibana/master/contributing.html#kibana-release-notes-process)
  • Loading branch information
cnasikas authored and clintandrewhall committed Jan 9, 2024
1 parent 283ad90 commit 0304c26
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1018,8 +1018,7 @@ export default ({ getPageObject, getService }: FtrProviderContext) => {
await testSubjects.existOrFail('case-view-tab-content-activity');
});

// there are no alerts in stack management yet
it.skip("shows the 'alerts' tab when clicked", async () => {
it("shows the 'alerts' tab when clicked", async () => {
await testSubjects.click('case-view-tab-title-alerts');
await testSubjects.existOrFail('case-view-tab-content-alerts');
});
Expand Down

0 comments on commit 0304c26

Please sign in to comment.