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

Using should.js how to check whether a string is not present in an array?

我们想检查一个字符串是否存在于数组中someArray.should.contain('str'),但我找不到对此的否定大小写检查。

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

should.js README does not mention .contain(). So if simply inserting .not does not work, use .containEql().