smoke: increase timeouts

This commit is contained in:
Joao Moreno 2017-09-26 12:32:07 +02:00
parent a2d1bbbe6f
commit 9c9996cc51

View file

@ -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) {