diff --git a/tasks/jasmine.js b/tasks/jasmine.js index f8dd221..0a68454 100644 --- a/tasks/jasmine.js +++ b/tasks/jasmine.js @@ -378,7 +378,7 @@ module.exports = function(grunt) { function logSummary(tests) { grunt.log.writeln('Summary (' + tests.length + ' tests failed)'); _.forEach(tests, function(test) { - grunt.log.writeln(chalk.red(symbols.options.display.error) + ' ' + test.suite + ' ' + test.name); + grunt.log.writeln(chalk.red(symbols[options.display].error) + ' ' + test.suite + ' ' + test.name); _.forEach(test.errors, function(error) { grunt.log.writeln(indent(2) + chalk.red(error.message)); logStack(error.stack, 2);