From 9c9996cc51f0921705d66478adb9622f4f1318f2 Mon Sep 17 00:00:00 2001 From: Joao Moreno Date: Tue, 26 Sep 2017 12:32:07 +0200 Subject: [PATCH] smoke: increase timeouts --- test/smoke/src/spectron/client.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/smoke/src/spectron/client.ts b/test/smoke/src/spectron/client.ts index 8fba667c799..ac15101c9d6 100644 --- a/test/smoke/src/spectron/client.ts +++ b/test/smoke/src/spectron/client.ts @@ -12,7 +12,9 @@ import { SpectronApplication } from './application'; */ export class SpectronClient { - private readonly retryCount = 100; + // waitFor calls should not take more than 200 * 100 = 20 seconds to complete, excluding + // the time it takes for the actual retry call to complete + private readonly retryCount = 200; private readonly retryDuration = 100; // in milliseconds constructor(public spectron: Application, private application: SpectronApplication) {