我试图使用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
有人可以帮我吗?先感谢您!
最佳答案
我找到了答案。我应该在全局安装expresso
sudo npm install -g expresso
我找到了很好的例子here