我是第一次测试我写了一个测试用例
var should = require("should")
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);
})
})
})
它给了我0次通过
0 passing (1ms)
但为什么它应该显示 1 通过