Skip to content

Commit

Permalink
Change port to 8000 for testing.
Browse files Browse the repository at this point in the history
  • Loading branch information
gvnn committed Mar 10, 2016
1 parent adefb76 commit 17f174d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion gulpfile.babel.js
Expand Up @@ -43,7 +43,7 @@ gulp.task('test:styles', () => {

gulp.task('test:serve', (done) => {
let app = connect().use(serveStatic('test/fixtures'));
httpServer = http.createServer(app).listen(1234, done);
httpServer = http.createServer(app).listen(8000, done);
});

gulp.task('test:e2e', ['test:styles', 'test:serve'], () => {
Expand Down
2 changes: 1 addition & 1 deletion wdio-sauce.conf.js
Expand Up @@ -90,7 +90,7 @@ exports.config = {
//
// Set a base URL in order to shorten url command calls. If your url parameter starts
// with "/", the base url gets prepended.
baseUrl: 'http://localhost:1234',
baseUrl: 'http://localhost:8000',
//
// Default timeout for all waitForXXX commands.
waitforTimeout: 10000,
Expand Down
2 changes: 1 addition & 1 deletion wdio.conf.js
Expand Up @@ -48,7 +48,7 @@ exports.config = {
//
// Set a base URL in order to shorten url command calls. If your url parameter starts
// with "/", the base url gets prepended.
baseUrl: 'http://localhost:1234',
baseUrl: 'http://localhost:8000',
//
// Default timeout for all waitForXXX commands.
waitforTimeout: 10000,
Expand Down

0 comments on commit 17f174d

Please sign in to comment.