标签: node.js shell mocha sails.js
我的mocha测试有以下test.js文件
test.js
var sh = require('execSync'); sh.run("sails generate models test_model &> test_op1.txt");
执行上面的代码时应该抛出错误,该错误应该存储/打印到名为test_op1.txt的文件。
我使用Mocha作为我的测试框架。如何编写,以便在终端上显示的错误应该存储/打印到文件test_op1.txt。