mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
[reporting] increase timeout of esqueue tests (#35325)
Fixes https://github.com/elastic/kibana/issues/35129 We've seen a single timeout in the reporting tests, and since it uses setTimeout I assume it's just getting a little delayed. Hoping that switching from a 2sec to 10sec timeout should solve this. These tests should be gone soon anyway once we move to the task manager for reporting job management.
This commit is contained in:
parent
29dfbd39d5
commit
16f798aced
1 changed files with 3 additions and 0 deletions
|
@ -27,6 +27,9 @@ const defaultWorkerOptions = {
|
|||
};
|
||||
|
||||
describe('Worker class', function () {
|
||||
// some of these tests might be a little slow, give them a little extra time
|
||||
this.timeout(10000);
|
||||
|
||||
let anchorMoment;
|
||||
let clock;
|
||||
let client;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue