From 04f3109d30d651f9a0093041c2a6f2bd8bb9da3b Mon Sep 17 00:00:00 2001 From: Benjamin Pasero Date: Thu, 1 Mar 2018 14:33:08 +0100 Subject: [PATCH] smoke - need to wait longer for window reload --- test/smoke/src/spectron/application.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/smoke/src/spectron/application.ts b/test/smoke/src/spectron/application.ts index a8e8ba2c7d0..91d742cd159 100644 --- a/test/smoke/src/spectron/application.ts +++ b/test/smoke/src/spectron/application.ts @@ -132,7 +132,7 @@ export class SpectronApplication { async reload(): Promise { await this.workbench.quickopen.runCommand('Reload Window'); // TODO @sandy: Find a proper condition to wait for reload - await new Promise(c => setTimeout(c, 500)); + await new Promise(c => setTimeout(c, 1500)); await this.checkWindowReady(); } -- GitLab