我想将配置文件包含到mocha测试框架中,在这个配置文件中,我想将变量放在congig中,这些变量将用于测试用例。所以请告诉我如何在mocha中包含配置文件。请检查配置文件config.js
的扩展名答案 0 :(得分:0)
mocha测试文件没有什么特别之处,它可以像任何其他js文件一样对待。
config.js
exports.variable1 = "foo";
exports.variable2 = "bar";
test.js
var config = require('config');
var expect = require('expect');
describe("feature", function(){
it("should work", function(){
expect(someFunction()).to.equal(config.variable1);
expect(someVariable).to.equal(config.variable2);
}
}