Node.js 用 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

请问谁能帮我?提前谢谢你!

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

sudo npm install -g expresso

我在这里找到了很好的例子

相关内容

  • 没有找到相关文章

最新更新