我正在用量角器编写测试用例。下面是我使用的配置
export let config: Config = {
framework: "jasmine",
specs: ["e2e-spec.js"],
seleniumAddress: "http://localhost:4444/wd/hub",
noGlobals: true,
capabilities: {
browserName: "chrome",
},
allScriptsTimeout: 200000
};
但是当我尝试访问文件api时,例如fs.write,它抱怨fs是未定义的。
如何在我的测试用例中启用fs模块?
答案 0 :(得分:0)
您需要先使用var fs = require("fs");
导入fs模块,然后才能在测试中访问它。