Skip to content

Commit

Permalink
build: increase timeout for flaky tests (#34)
Browse files Browse the repository at this point in the history
  • Loading branch information
sofisl authored and irataxy committed Jan 18, 2023
1 parent 3b9def2 commit d71efb9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions media/transcoder/test/transcoder.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -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}
Expand Down Expand Up @@ -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}
Expand Down Expand Up @@ -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}
Expand Down

0 comments on commit d71efb9

Please sign in to comment.