From a605835cc919547d216cc3361adb04a40e51fc9b Mon Sep 17 00:00:00 2001 From: Rowan Manning Date: Fri, 10 Jan 2014 16:48:34 +0000 Subject: [PATCH] Attempt to fix timeout errors in tests --- Gruntfile.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Gruntfile.js b/Gruntfile.js index 06f551b..5ec2329 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -38,7 +38,8 @@ module.exports = function (grunt) { functional: { src: ['test/functional/**/*.js'], options: { - reporter: 'spec' + reporter: 'spec', + timeout: 4000 } } }, @@ -113,4 +114,4 @@ module.exports = function (grunt) { grunt.registerTask('default', ['compile', 'lint', 'test']); grunt.registerTask('ci', ['lint', 'test']); -}; \ No newline at end of file +};