This repository was archived by the owner on Jul 29, 2024. It is now read-only.
File tree 3 files changed +3
-3
lines changed
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -106,7 +106,7 @@ exports.config = {
106
106
//
107
107
// A base URL for your application under test. Calls to protractor.get()
108
108
// with relative paths will be prepended with this.
109
- baseUrl : 'http://localhost:' + ( process . env . HTTP_PORT || '8000' ) ,
109
+ baseUrl : 'http://localhost:9876' ,
110
110
111
111
// Selector for the element housing the angular app - this defaults to
112
112
// body, but is necessary if ng-app is on a descendant of <body>
Original file line number Diff line number Diff line change @@ -15,6 +15,6 @@ module.exports = {
15
15
// A base URL for your application under test.
16
16
baseUrl :
17
17
'http://' + ( process . env . HTTP_HOST || 'localhost' ) +
18
- ':' + ( process . env . HTTP_PORT || '8000 ' )
18
+ ':' + ( process . env . HTTP_PORT || '8081 ' )
19
19
20
20
} ;
Original file line number Diff line number Diff line change 3
3
var express = require ( 'express' ) ;
4
4
var util = require ( 'util' ) ;
5
5
var testApp = express ( ) ;
6
- var DEFAULT_PORT = process . env . HTTP_PORT || 8000 ;
6
+ var DEFAULT_PORT = process . env . HTTP_PORT || 8081 ;
7
7
var testAppDir = require ( 'path' ) . resolve ( __dirname , '..' ) ;
8
8
9
9
var main = function ( argv ) {
You can’t perform that action at this time.
0 commit comments