Node.js用expresso测试

时间:2015-05-01 07:59:02

标签: javascript node.js testing expresso

我尝试使用expresso来测试我的项目。 我用命令

安装了它
sudo npm install --save expresso

它对我有用。 我决定在创建的test.js文件中用代码

测试它
var assert = require('assert');
assert.equal(6, 'foobar'.length);

我按照示例中的命令expresso ./test.js运行它 但我有结果

No command 'expresso' found, did you mean:
Command 'extresso' from package 'icoutils' (universe)
Command 'express' from package 'node-express' (universe)
expresso: command not found

有人可以帮帮我吗?提前谢谢!

1 个答案:

答案 0 :(得分:2)

我找到了答案。我应该全局安装Image

expresso

我找到了很好的例子here