From 9911ef5bce1dde03254ef1b1eb7f5afad7f14699 Mon Sep 17 00:00:00 2001 From: kobenguyent Date: Fri, 6 Oct 2023 11:08:34 +0200 Subject: [PATCH] fix: increase UT timeout --- test/runner/before_failure_test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/runner/before_failure_test.js b/test/runner/before_failure_test.js index fee680070..fccf19554 100644 --- a/test/runner/before_failure_test.js +++ b/test/runner/before_failure_test.js @@ -6,7 +6,7 @@ const codecept_dir = path.join(__dirname, '/../data/sandbox'); const codecept_run = `${runner} run --config ${codecept_dir}/codecept.beforetest.failure.js `; describe('Failure in before', function () { - this.timeout(5000); + this.timeout(10000); it('should skip tests that are skipped because of failure in before hook', (done) => { exec(`${codecept_run}`, (err, stdout) => { stdout.should.include('✔ First test will be passed');