SYNCHRONOUS CODE
当测试同步代码的时候,可以省略参数中的回调函数,Mocha会自动的测试下面的代码。
describe('Array', function () {
describe('#indexOf()', function () {
it('should return -1 when the value is not present', function() {
[1,2,3].indexOf(5).should.equal(-1);
[1,2,3].indexOf(0).should.equal(-1);
});
})
})