我的功能如下:
function instance(options) {
this.createInstance = Bluebird.method(function() {
this.getInstance();
});
this.getInstance = Bluebird.method(function () {
});
}
module.exports = instance
Bluebird是承诺的npm库
在使用mocha的测试文件中,我导入此实例文件并按var Instance = new instance(options);
创建对象
我打电话给Instance.createInstance
但是我收到错误TypeError: Cannot read property 'getInstance' of null