fix(test): longer test timeout (#40748)
Some tests randomly fail in CI so this commit makes them more forgiving.
This commit is contained in:
committed by
Mrugesh Mohapatra
parent
2615490bac
commit
94e6219c39
@ -476,7 +476,7 @@ function populateTestsForLang({ lang, challenges, meta }) {
|
|||||||
describe('Check tests against solutions', function() {
|
describe('Check tests against solutions', function() {
|
||||||
solutions.forEach((solution, index) => {
|
solutions.forEach((solution, index) => {
|
||||||
it(`Solution ${index + 1} must pass the tests`, async function() {
|
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(
|
const testRunner = await createTestRunner(
|
||||||
challenge,
|
challenge,
|
||||||
solution,
|
solution,
|
||||||
|
Reference in New Issue
Block a user