有没有办法在 cucumber.js 步骤定义代码中记录步骤?我试图用 jsduck @class 来模拟它:
/**
* @class Global.steps.common
* Common steps.
*/
var steps = module.exports = function() {
/**
* Step 1 description.
*/
this.Given(/^StepDef1$/, function(next) {
...
});
/**
* Step 2 description.
*/
this.Given(/^StepDef2$/, function(next) {
...
});
});
但是 jsduck 只识别最后一步的描述。