Skip to content
This repository was archived by the owner on Apr 4, 2025. It is now read-only.

Commit 5d8c85a

Browse files
committed
test(e2e): change server port to 9000
1 parent 05f93f7 commit 5d8c85a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Diff for: gulpfile.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ function startServer() {
2828
index: 'index.html'
2929
}));
3030
server = http.createServer(app);
31-
server.listen(8080);
31+
server.listen(9000);
3232
return server;
3333
}
3434

Diff for: protractor.conf.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
var travisConfig = require('./config/protractor.travis.conf');
44

55
var options = {
6-
baseUrl: 'http://localhost:8080/e2e/',
6+
baseUrl: 'http://localhost:9000/e2e/',
77

88
capabilities: {
99
'browserName': 'chrome'

0 commit comments

Comments
 (0)