如何将mocha测试与mocha-phantomjs测试结合起来

时间:2014-12-07 14:08:00

标签: javascript node.js unit-testing phantomjs mocha

测试用例:

  • 服务器/
    • appTest.js
  • 的客户机/
    • clientTest.js
  • clientBundle.js
  • clientTest.html

所有都是摩卡测试。对于客户端测试,我使用sinon,并使用webpack生成一个bundle - clientBundle.js并使用mocha-phantomjs运行它进行无头测试。

现在我已将npm test定义为mocha test/server && mocha-phantomjs test/clientTest.html。它分别为我们提供了结果。如何将它们组合成一个 - 比如mocha test/all.js

require()s内尝试test/all.js。 mocha-phantomjs不能用作节点内的库。它只能用作CLI。

0 个答案:

没有答案