fix(ci): increase timeouts for flaky tests

(cherry picked from commit eee41925aa)
This commit is contained in:
WillLillis 2025-04-18 22:28:51 -04:00 committed by Christian Clason
parent 20a5d46b50
commit 42624511cf
2 changed files with 4 additions and 4 deletions

View file

@ -256,7 +256,7 @@ describe('Parser', () => {
expect(() => parser.parse({})).toThrow('Argument must be a string or a function');
});
it('handles long input strings', { timeout: 5000 }, () => {
it('handles long input strings', { timeout: 10000 }, () => {
const repeatCount = 10000;
const inputString = `[${Array(repeatCount).fill('0').join(',')}]`;