From 94e6219c3997785e49b9968922a70e4ee271c86b Mon Sep 17 00:00:00 2001 From: Oliver Eyton-Williams Date: Wed, 20 Jan 2021 16:27:18 +0100 Subject: [PATCH] fix(test): longer test timeout (#40748) Some tests randomly fail in CI so this commit makes them more forgiving. --- curriculum/test/test-challenges.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/test/test-challenges.js b/curriculum/test/test-challenges.js index bc67c8fd31..ea23ed057f 100644 --- a/curriculum/test/test-challenges.js +++ b/curriculum/test/test-challenges.js @@ -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,