在使用量角器编写e2e测试时如何启用文件api

时间:2018-03-29 18:53:11

标签: node.js testing jasmine protractor

我正在用量角器编写测试用例。下面是我使用的配置

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模块?

1 个答案:

答案 0 :(得分:0)

您需要先使用var fs = require("fs");导入fs模块,然后才能在测试中访问它。