diff --git a/Gruntfile.js b/Gruntfile.js index 4f53f35e4f..c7ae56e1d0 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -107,7 +107,8 @@ var path = require('path'), // Start our server in development express: { options: { - script: 'index.js' + script: 'index.js', + output: 'Ghost is running' }, dev: { @@ -877,7 +878,7 @@ var path = require('path'), grunt.registerTask('test-api', 'Run functional api tests only', ['clean:test', 'setTestEnv', 'loadConfig', 'express:test', 'mochacli:api', 'express:test:stop']); - grunt.registerTask('validate', 'Run tests and lint code', ['jslint', 'test-unit', 'test-integration', 'test-api', 'test-functional']); + grunt.registerTask('validate', 'Run tests and lint code', ['jslint', 'test-unit', 'test-api', 'test-integration', 'test-functional']); // ## Coverage report for Unit and Integration Tests