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:
parent
0fa06822fc
commit
32ec1a6d27
2 changed files with 2 additions and 2 deletions
|
|
@ -943,7 +943,7 @@ describe('Step Details', () => {
|
|||
|
||||
expect(await getNextButton()).not.toHaveClass('pf-m-disabled');
|
||||
expect(await getNextButton()).toBeEnabled();
|
||||
}, 20000);
|
||||
}, 50000);
|
||||
});
|
||||
|
||||
describe('Step Review', () => {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue