Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am using Chai.js on Node. The line console.log(e) where e is an exception thrown by Chai.js print something like expected a to be within 0..3. How can I make the exception of Chai.js include stack trace info?

share|improve this question

2 Answers

up vote 2 down vote accepted

I found the answer. I can config chai to enable stack trace. Here's the code on assertion styles page of chai.

var chai = require('chai');
chai.Assertion.includeStack = true; // defaults to false
share|improve this answer

I don't use Chai.JS. But if e is an Error object, you can use the property stack of the object to get the stack trace.

The core module "util" may also help you : http://nodejs.org/api/util.html

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.