fix(core): fix a flaky test

This commit is contained in:
Victor Savkin 2023-11-23 17:38:56 -05:00
parent 6630658290
commit cee187b9e9
No known key found for this signature in database
GPG Key ID: CAC0DF5DE980A80E

View File

@ -201,7 +201,7 @@ describe('run-many', () => {
);
performance.mark('end');
const measure = performance.measure('projects', 'start', 'end');
expect(measure.duration).toBeLessThan(4000);
expect(measure.duration).toBeLessThan(10000);
});
});
});