Mocha作为Nodejs中的库

时间:2014-05-09 17:14:18

标签: javascript node.js mocha

我们所有的ui测试都是用db中的mocha编写的。如果可以使用mocha作为库并从expressjs运行那些测试将是非常方便的。我在网上搜索了这个,只有我能找到的参考文献是Mocha as library超过2年。此外,答案中给出的链接也被打破了。

我想要运行我的测试的方式是,当我对express表示调用时,它应该运行测试并更新db中的状态。我觉得能够使用Mocha作为库对我的用例来说会更清晰。我能够在命令行中用

进行测试
$ $EDITOR test/test.js

var assert = require("assert")
describe('Array', function(){
  describe('#indexOf()', function(){
    it('should return -1 when the value is not present', function(){
      assert.equal(-1, [1,2,3].indexOf(5));
      assert.equal(-1, [1,2,3].indexOf(0));
    })
  })
})

$  mocha

  .

  ✔ 1 test complete (1ms)

0 个答案:

没有答案