Attempt to fix timeout errors in tests

This commit is contained in:
Rowan Manning
2014-01-10 16:48:34 +00:00
parent 01897d8a17
commit a605835cc9

View File

@@ -38,7 +38,8 @@ module.exports = function (grunt) {
functional: { functional: {
src: ['test/functional/**/*.js'], src: ['test/functional/**/*.js'],
options: { options: {
reporter: 'spec' reporter: 'spec',
timeout: 4000
} }
} }
}, },
@@ -113,4 +114,4 @@ module.exports = function (grunt) {
grunt.registerTask('default', ['compile', 'lint', 'test']); grunt.registerTask('default', ['compile', 'lint', 'test']);
grunt.registerTask('ci', ['lint', 'test']); grunt.registerTask('ci', ['lint', 'test']);
}; };