fix(test): longer test timeout (#40748)

Some tests randomly fail in CI so this commit makes them more forgiving.
This commit is contained in:
Oliver Eyton-Williams
2021-01-20 16:27:18 +01:00
committed by Mrugesh Mohapatra
parent 2615490bac
commit 94e6219c39

View File

@ -476,7 +476,7 @@ function populateTestsForLang({ lang, challenges, meta }) {
describe('Check tests against solutions', function() {
solutions.forEach((solution, index) => {
it(`Solution ${index + 1} must pass the tests`, async function() {
this.timeout(5000 * tests.length + 1000);
this.timeout(5000 * tests.length + 2000);
const testRunner = await createTestRunner(
challenge,
solution,