[EDR Workflows] Fix artifact FTR tests broken by artifacts regrouping#261845
Merged
szwarckonrad merged 1 commit intoelastic:mainfrom Apr 7, 2026
Merged
Conversation
Contributor
|
Pinging @elastic/security-defend-workflows (Team:Defend Workflows) |
parkiino
approved these changes
Apr 7, 2026
Contributor
⏳ Build in-progress, with failures
Failed CI StepsTest Failures
|
21458b5 to
e136f6e
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The artifacts regrouping PR (#257001) reorganized all endpoint artifacts into a unified page with tabs. This changed the page structure so that
header-page-titlenow belongs to the unified "Artifacts" page and is always present, regardless of whether individual tabs have entries.Previously,
trusted_apps_list.tswas skipped (flaky). Our PR #261180 unskipped it after fixing the underlying flakiness — but by that point the regrouping had already landed, making theheader-page-titleassertions invalid. The test immediately started failing on merge.artifact_entries_list.tshas the sameheader-page-titleassertions for all artifact types (trusted apps, event filters, blocklist, host isolation exceptions) — these would fail for the same reason once hit.Fix: Replace
missingOrFail('header-page-title')withexistOrFail('*-emptyState')in both test files. The empty state test subject is the correct indicator that a tab has no entries.Closes #261827
Closes #261829
Closes #261833
Closes #261849
Closes #261850