From 14fd6131c314ac31ca0d0f541bb25451403f4613 Mon Sep 17 00:00:00 2001 From: sofisl <55454395+sofisl@users.noreply.github.com> Date: Fri, 12 Feb 2021 10:46:50 -0800 Subject: [PATCH] build: increase timeout for flaky tests (#34) --- media/transcoder/test/transcoder.test.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/media/transcoder/test/transcoder.test.js b/media/transcoder/test/transcoder.test.js index 3e736b8d9c..69e739a922 100644 --- a/media/transcoder/test/transcoder.test.js +++ b/media/transcoder/test/transcoder.test.js @@ -157,7 +157,7 @@ describe('Job functions preset', () => { it('should check that the job succeeded', async function () { this.retries(5); - await wait(30000); + await wait(90000); const output = execSync( `node getJobState.js ${projectId} ${location} ${this.presetJobId}`, {cwd} @@ -217,7 +217,7 @@ describe('Job functions template', () => { it('should check that the job succeeded', async function () { this.retries(5); - await wait(30000); + await wait(90000); const output = execSync( `node getJobState.js ${projectId} ${location} ${this.templateJobId}`, {cwd} @@ -267,7 +267,7 @@ describe('Job functions adhoc', () => { it('should check that the job succeeded', async function () { this.retries(5); - await wait(30000); + await wait(90000); const output = execSync( `node getJobState.js ${projectId} ${location} ${this.adhocJobId}`, {cwd}