mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 01:38:56 -04:00
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:
parent
09df093735
commit
646d2e897e
1 changed files with 3 additions and 4 deletions
|
@ -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();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue