Make the fixture tasks run a little longer so the watch thinks it did something.

This commit is contained in:
Kyle Robinson Young 2013-05-07 12:15:24 -07:00
parent f8a7b3cebe
commit 188ec9f10e

View File

@ -21,9 +21,17 @@ module.exports = function(grunt) {
grunt.loadTasks('../../../tasks');
grunt.registerTask('warn', function() {
grunt.warn('This task should warn!');
var done = this.async();
setTimeout(function() {
grunt.warn('This task should warn!');
done();
}, 1);
});
grunt.registerTask('fatal', function() {
grunt.fatal('This task should be fatal!');
var done = this.async();
setTimeout(function() {
grunt.fatal('This task should be fatal!');
done();
}, 1);
});
};