From 43792d019a646ae143e803f9e4e29761105bb45f Mon Sep 17 00:00:00 2001 From: Corey Johnson Date: Tue, 22 Apr 2014 11:01:05 -0700 Subject: [PATCH] Output deprecation message --- spec/spec-helper.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/spec-helper.coffee b/spec/spec-helper.coffee index af7629f3f..0db660ff1 100644 --- a/spec/spec-helper.coffee +++ b/spec/spec-helper.coffee @@ -141,7 +141,7 @@ ensureNoDeprecatedFunctionsCalled = -> Error.prepareStackTrace = (error, stack) -> output = [] for deprecation in deprecations - output.push "#{deprecation.originName} is deprecated" + output.push "#{deprecation.originName} is deprecated. #{deprecation.message}" output.push _.multiplyString("-", output[output.length - 1].length) for stack in deprecation.getStacks() for {functionName, location} in stack