diff --git a/tasks/spec-task.coffee b/tasks/spec-task.coffee index 0df958a32..caa5cf7bc 100644 --- a/tasks/spec-task.coffee +++ b/tasks/spec-task.coffee @@ -53,6 +53,8 @@ module.exports = (grunt) -> grunt.registerTask 'run-specs', 'Run the specs', -> done = @async() + startTime = Date.now() async.parallel [runCoreSpecs, runPackageSpecs], (error, results) -> [coreSpecPassed, packageSpecsPassed] = results + grunt.log.writeln("Total spec time: #{(Date.now() - startTime)/1000}s") done(coreSpecPassed and packageSpecsPassed)