Change port used for testing to 3000 cause of safari issues in using 9000

This commit is contained in:
evilaliv3 2016-01-08 12:31:06 +01:00
parent 954540ff22
commit 79034f8dde

View File

@ -169,7 +169,7 @@ module.exports = function(grunt) {
connect: { connect: {
dev: { dev: {
options: { options: {
port: 9000, port: 3000,
base: '.' base: '.'
} }
} }
@ -179,16 +179,15 @@ module.exports = function(grunt) {
options: { options: {
username: 'openpgpjs', username: 'openpgpjs',
key: '60ffb656-2346-4b77-81f3-bc435ff4c103', 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, build: process.env.TRAVIS_BUILD_ID,
testname: 'Sauce Unit Test for openpgpjs', testname: 'Sauce Unit Test for openpgpjs',
browsers: [browser_capabilities], browsers: [browser_capabilities],
public: "public", public: "public",
'max-duration': 360, maxRetries: 3,
maxRetries: 1, throttled: 2,
throttled: 3, pollInterval: 4000,
pollInterval: 2000, statusCheckAttempts: 200
statusCheckAttempts: 360
} }
}, },
} }