From ae56e32b5dc48000556e2c5cd9365d3392141042 Mon Sep 17 00:00:00 2001 From: Ibrahim Jarif Date: Mon, 13 Aug 2018 11:37:01 +0530 Subject: [PATCH] fix(test): Change spec timeout from 60 mins to 3 mins (#2752) --- tests/protractor.conf.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/protractor.conf.ts b/tests/protractor.conf.ts index 42e4c5bc2..2116dc177 100644 --- a/tests/protractor.conf.ts +++ b/tests/protractor.conf.ts @@ -27,7 +27,7 @@ let conf: Config = { showColors: true, silent: true, isVerbose: true, - defaultTimeoutInterval: 60 * 60 * 1000 // 60 mins for spec to run + defaultTimeoutInterval: 3 * 60 * 1000 // 3 mins for spec to run }, directConnect: process.env.DIRECT_CONNECTION === "true",