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

pull/89/head
Kyle Robinson Young 12 years ago
parent f8a7b3cebe
commit 188ec9f10e

@ -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);
});
};

Loading…
Cancel
Save