我尝试使用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
任何人都可以帮助我吗?先感谢您!