使用should.js如何检查数组中是否存在字符串?

时间:2015-04-24 15:31:39

标签: javascript mocha should.js

要检查数组中是否存在字符串,我们会someArray.should.contain('str'),但我无法找到否定案例检查。

1 个答案:

答案 0 :(得分:7)

使用.not应该有效:someArray.should.not.contain('str')

should.js README未提及.contain()。因此,如果只是插入.not不起作用,请使用.containEql()