Skip to content

Commit

Permalink
Changing port number and adding server to grunt travis command
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobawenger committed Jun 13, 2014
1 parent 403bfb1 commit 9637cbe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ module.exports = function(grunt) {
testserver: {
options: {
hostname: 'localhost',
port: 3030
port: 8000
}
}
},
Expand Down Expand Up @@ -146,7 +146,7 @@ module.exports = function(grunt) {
grunt.registerTask('test:watch:unit', ['karma:watch']);

// Travis CI testing
grunt.registerTask('travis', ['build', 'test:unit', 'protractor:saucelabs']);
grunt.registerTask('travis', ['build', 'test:unit', 'connect:testserver', 'protractor:saucelabs']);

// Build tasks
grunt.registerTask('build', ['jshint', 'uglify']);
Expand Down

0 comments on commit 9637cbe

Please sign in to comment.