File tree Expand file tree Collapse file tree 3 files changed +4
-3
lines changed
server/config/environment Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -66,7 +66,7 @@ module.exports = function(config) {
6666 exclude: [],
6767
6868 // web server port
69- port: < %= devPort % > ,
69+ port: < %= Number ( devPort ) + 1 % > ,
7070
7171 // level of logging
7272 // possible values: LOG_DISABLE || LOG_ERROR || LOG_WARN || LOG_INFO || LOG_DEBUG
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ var config = {
1111
1212 // A base URL for your application under test. Calls to protractor.get()
1313 // with relative paths will be prepended with this.
14- baseUrl : 'http://localhost:' + ( process . env . PORT || '<%= devPort %>' ) ,
14+ baseUrl : 'http://localhost:' + ( process . env . PORT || '<%= Number( devPort) + 1 %>' ) ,
1515
1616 // Credientials for Saucelabs
1717 sauceUser : process . env . SAUCE_USERNAME ,
Original file line number Diff line number Diff line change @@ -17,5 +17,6 @@ module.exports = {
1717 timestamps : false
1818 }
1919 }
20- }
20+ } ,
21+ port : '<%= Number(devPort) + 1 %>' ,
2122} ;
You can’t perform that action at this time.
0 commit comments