Cucmber this.AfterFeatures挂钩功能开始运行之前

时间:2017-03-27 06:57:06

标签: javascript protractor cucumber

无论我尝试做什么this.AfterFeatures挂钩在所有功能都开始运行之前保持呼叫。试图找到一个解决方案,并没有找到这种情况发生的原因?

我使用量角器和黄瓜(custome)作为框架:

var myAfterHooks = function () { 
    this.AfterFeatures(function (event, callback) {
        console.log('AfterFeatures');
        callback();
    });
};

module.exports = myAfterHooks;

也尝试使用registerHandler('AfterFeatures', function (event, callback) {

根本没有解决它。

0 个答案:

没有答案