Skip to content
This repository has been archived by the owner on Jul 20, 2023. It is now read-only.

Commit

Permalink
build: increase timeout for flaky tests (#34)
Browse files Browse the repository at this point in the history
  • Loading branch information
sofisl committed Feb 12, 2021
1 parent d006d8b commit c20a778
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions samples/test/transcoder.test.js
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 c20a778

Please sign in to comment.