访问摩卡配置文件中定义的属性

时间:2019-05-20 23:13:40

标签: node.js testing mocha

如何访问测试中配置文件。(mochrc)中定义的属性?

module.exports = {customproperty: 'value', timeout: 5000}

在测试中

describe('Sample test', function(){
    it('Sample testcase', function(){
        console.log(this.timeout());

    })
});

明智的方式如何访问自定义属性

0 个答案:

没有答案