Fix failing grunt test
Project: http://git-wip-us.apache.org/repos/asf/couchdb/repo Commit: http://git-wip-us.apache.org/repos/asf/couchdb/commit/fb633cb2 Tree: http://git-wip-us.apache.org/repos/asf/couchdb/tree/fb633cb2 Diff: http://git-wip-us.apache.org/repos/asf/couchdb/diff/fb633cb2 Branch: refs/heads/2041-update-ibrowse Commit: fb633cb2892ff06316b49a1549b804537beaf59e Parents: 8ec4cbc Author: Garren Smith <[email protected]> Authored: Fri Feb 7 15:13:05 2014 +0200 Committer: Garren Smith <[email protected]> Committed: Fri Feb 7 15:13:05 2014 +0200 ---------------------------------------------------------------------- src/fauxton/Gruntfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/couchdb/blob/fb633cb2/src/fauxton/Gruntfile.js ---------------------------------------------------------------------- diff --git a/src/fauxton/Gruntfile.js b/src/fauxton/Gruntfile.js index 9507a60..c087afa 100644 --- a/src/fauxton/Gruntfile.js +++ b/src/fauxton/Gruntfile.js @@ -426,7 +426,7 @@ module.exports = function(grunt) { */ // clean out previous build artefactsa and lint grunt.registerTask('lint', ['clean', 'jshint']); - grunt.registerTask('test', ['lint', 'dependencies', 'test_inline']); + grunt.registerTask('test', ['lint', 'dependencies', 'gen_initialize:development', 'test_inline']); // lighter weight test task for use inside dev/watch grunt.registerTask('test_inline', ['mochaSetup','jst', 'concat:test_config_js','mocha_phantomjs']); // Fetch dependencies (from git or local dir), lint them and make load_addons
