From 79034f8ddeecf5d1ad4fe0193d22e2b95b5c879e Mon Sep 17 00:00:00 2001 From: evilaliv3 Date: Fri, 8 Jan 2016 12:31:06 +0100 Subject: [PATCH] Change port used for testing to 3000 cause of safari issues in using 9000 --- Gruntfile.js | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/Gruntfile.js b/Gruntfile.js index 45ac6992..2bf2160b 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -169,7 +169,7 @@ module.exports = function(grunt) { connect: { dev: { options: { - port: 9000, + port: 3000, base: '.' } } @@ -179,16 +179,15 @@ module.exports = function(grunt) { options: { username: 'openpgpjs', key: '60ffb656-2346-4b77-81f3-bc435ff4c103', - urls: ['http://127.0.0.1:9000/test/unittests.html'], + urls: ['http://127.0.0.1:3000/test/unittests.html'], build: process.env.TRAVIS_BUILD_ID, testname: 'Sauce Unit Test for openpgpjs', browsers: [browser_capabilities], public: "public", - 'max-duration': 360, - maxRetries: 1, - throttled: 3, - pollInterval: 2000, - statusCheckAttempts: 360 + maxRetries: 3, + throttled: 2, + pollInterval: 4000, + statusCheckAttempts: 200 } }, }