SYNCHRONOUS CODE

当测试同步代码的时候,可以省略参数中的回调函数,Mocha会自动的测试下面的代码。

  1. describe('Array', function () {
  2. describe('#indexOf()', function () {
  3. it('should return -1 when the value is not present', function() {
  4. [1,2,3].indexOf(5).should.equal(-1);
  5. [1,2,3].indexOf(0).should.equal(-1);
  6. });
  7. })
  8. })