Increase timeout for costly ".kibana split" integration test (#160631)

Tackles https://github.com/elastic/kibana/issues/157510

Nothing's wrong with the test, it's only that it's a bit costly, as it
migrates a 100k SO archive.

This PR simply increases the timeout for the conflicting test.
This commit is contained in:
Gerard Soldevila 2023-07-03 12:38:13 +02:00 committed by GitHub
parent 09df093735
commit 646d2e897e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -412,9 +412,8 @@ describe('split .kibana index into multiple system indices', () => {
});
});
// FLAKY: https://github.com/elastic/kibana/issues/157510
// This test takes too long. Can be manually executed to verify the correct behavior.
describe.skip('when multiple Kibana migrators run in parallel', () => {
describe('when multiple Kibana migrators run in parallel', () => {
jest.setTimeout(1200000);
it('correctly migrates 7.7.2_xpack_100k_obj.zip archive', async () => {
esServer = await startElasticsearch({
dataArchive: Path.join(__dirname, '..', 'archives', '7.7.2_xpack_100k_obj.zip'),
@ -491,7 +490,7 @@ describe('split .kibana index into multiple system indices', () => {
task: 5,
},
});
}, 1200000);
});
afterEach(async () => {
await esServer?.stop();