jest: Increase test timeout

This increases default test timeout from 10000 to 20000 and timeout for "image name invalid for more than 100 chars and description for 250" to 50000.

This should eliminate test flakes caused by timing out, later it will be "reverted" when the Vitest migration gets merged.
This commit is contained in:
regexowl 2024-07-16 09:51:44 +02:00 committed by Ondřej Ezr
parent 0fa06822fc
commit 32ec1a6d27
2 changed files with 2 additions and 2 deletions

View file

@ -943,7 +943,7 @@ describe('Step Details', () => {
expect(await getNextButton()).not.toHaveClass('pf-m-disabled');
expect(await getNextButton()).toBeEnabled();
}, 20000);
}, 50000);
});
describe('Step Review', () => {