Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[EDR Workflows][8.12] Reenable artifact entries list FTR #174294

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -51,21 +51,7 @@ export default ({ getPageObjects, getService }: FtrProviderContext) => {
.set('kbn-xsrf', 'true');
};

// Several flaky tests from this file in serverless, hence @skipInServerless
// - https://github.com/elastic/kibana/issues?q=is%3Aissue+is%3Aopen+X-pack+endpoint+integrations++artifact+entries+list
// https://github.com/elastic/kibana/issues/171475
// https://github.com/elastic/kibana/issues/171476
// https://github.com/elastic/kibana/issues/171477
// https://github.com/elastic/kibana/issues/171478
// https://github.com/elastic/kibana/issues/171487
// https://github.com/elastic/kibana/issues/171488
// https://github.com/elastic/kibana/issues/171489
// https://github.com/elastic/kibana/issues/171491
// https://github.com/elastic/kibana/issues/171492
//
// FLAKY: https://github.com/elastic/kibana/issues/173681
// FLAKY: https://github.com/elastic/kibana/issues/173682
describe.skip('For each artifact list under management', function () {
describe('For each artifact list under management', function () {
targetTags(this, ['@ess', '@serverless']);

this.timeout(60_000 * 5);
Expand Down Expand Up @@ -228,9 +214,7 @@ export default ({ getPageObjects, getService }: FtrProviderContext) => {
};

for (const testData of getArtifactsListTestsData()) {
// FLAKY: https://github.com/elastic/kibana/issues/171489
// FLAKY: https://github.com/elastic/kibana/issues/171475
describe.skip(`When on the ${testData.title} entries list`, function () {
describe(`When on the ${testData.title} entries list`, function () {
beforeEach(async () => {
policyInfo = await policyTestResources.createPolicy();
await removeAllArtifacts();
Expand Down Expand Up @@ -316,8 +300,7 @@ export default ({ getPageObjects, getService }: FtrProviderContext) => {
});
}

// FLAKY: https://github.com/elastic/kibana/issues/171476
describe.skip('Should check artifacts are correctly generated when multiple entries', function () {
describe('Should check artifacts are correctly generated when multiple entries', function () {
let firstPolicy: PolicyTestResourceInfo;
let secondPolicy: PolicyTestResourceInfo;

Expand Down