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?
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 found the answer. I can config chai to enable stack trace. Here's the code on assertion styles page of chai.
|
|||
|
|
|
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 |
|||
|
|