How can I retrieve the current test's name within a Mocha test?
javascript, mocha.js
Solution
Here you go:
console.log(this.title);
Problem
For additional logging, I need to be able to print the current test's description. How can I do this (with Mocha BDD)?