From 08014add7c1105deb1b1b3b7fd6353dfba91fd2b Mon Sep 17 00:00:00 2001 From: Kevin Brown Date: Fri, 13 Feb 2015 22:22:14 -0500 Subject: [PATCH] Fixed local server not starting for Travis --- Gruntfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gruntfile.js b/Gruntfile.js index ddf853ca..78006058 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -305,7 +305,7 @@ module.exports = function (grunt) { grunt.registerTask('minify', ['uglify', 'sass:dist']); grunt.registerTask('test', ['qunit', 'jshint']); - grunt.registerTask('ci', ['compile', 'saucelabs-qunit', 'test']); + grunt.registerTask('ci', ['compile', 'connect:tests', 'saucelabs-qunit', 'test']); grunt.registerTask('docs', ['symlink:docs', 'jekyll:serve']);