[Fleet] un-skip flaky pipeline tests (#154317)

This commit is contained in:
Mark Hopkin 2023-04-04 15:05:17 +01:00 committed by GitHub
parent 98df0c25d3
commit 62868e7fc0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 10 deletions

View file

@ -19,6 +19,8 @@ export default function (providerContext: FtrProviderContext) {
const supertest = getService('supertest');
const es = getService('es');
const esArchiver = getService('esArchiver');
// TODO: Use test package or move to input package version github.com/elastic/kibana/issues/154243
const LOG_INTEGRATION_VERSION = '1.1.2';
describe('custom ingest pipeline for fleet managed datastreams', () => {
skipIfNoDockerRegistry(providerContext);
@ -59,8 +61,7 @@ export default function (providerContext: FtrProviderContext) {
}
});
// FLAKY: https://github.com/elastic/kibana/issues/154227
describe.skip('Without custom pipeline', () => {
describe('Without custom pipeline', () => {
it('Should write doc correctly', async () => {
const res = await es.index({
index: 'logs-log.log-test',

View file

@ -14,6 +14,7 @@ const TEST_INDEX = 'logs-log.log-test';
const FINAL_PIPELINE_ID = '.fleet_final_pipeline-1';
// TODO: Use test package or move to input package version github.com/elastic/kibana/issues/154243
const LOG_INTEGRATION_VERSION = '1.1.2';
const FINAL_PIPELINE_VERSION = 1;
@ -33,14 +34,7 @@ export default function (providerContext: FtrProviderContext) {
.expect(201);
}
// FLAKY: https://github.com/elastic/kibana/issues/154220
// FLAKY: https://github.com/elastic/kibana/issues/154221
// FLAKY: https://github.com/elastic/kibana/issues/154222
// FLAKY: https://github.com/elastic/kibana/issues/154223
// FLAKY: https://github.com/elastic/kibana/issues/154224
// FLAKY: https://github.com/elastic/kibana/issues/154225
// FLAKY: https://github.com/elastic/kibana/issues/154226
describe.skip('fleet_final_pipeline', () => {
describe('fleet_final_pipeline', () => {
skipIfNoDockerRegistry(providerContext);
before(async () => {
await esArchiver.load('x-pack/test/functional/es_archives/fleet/empty_fleet_server');