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

Commit c20a778

Browse files
authored
build: increase timeout for flaky tests (#34)
1 parent d006d8b commit c20a778

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

samples/test/transcoder.test.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ describe('Job functions preset', () => {
157157

158158
it('should check that the job succeeded', async function () {
159159
this.retries(5);
160-
await wait(30000);
160+
await wait(90000);
161161
const output = execSync(
162162
`node getJobState.js ${projectId} ${location} ${this.presetJobId}`,
163163
{cwd}
@@ -217,7 +217,7 @@ describe('Job functions template', () => {
217217

218218
it('should check that the job succeeded', async function () {
219219
this.retries(5);
220-
await wait(30000);
220+
await wait(90000);
221221
const output = execSync(
222222
`node getJobState.js ${projectId} ${location} ${this.templateJobId}`,
223223
{cwd}
@@ -267,7 +267,7 @@ describe('Job functions adhoc', () => {
267267

268268
it('should check that the job succeeded', async function () {
269269
this.retries(5);
270-
await wait(30000);
270+
await wait(90000);
271271
const output = execSync(
272272
`node getJobState.js ${projectId} ${location} ${this.adhocJobId}`,
273273
{cwd}

0 commit comments

Comments
 (0)