标签: javascript mocha should.js
要检查数组中是否存在字符串,我们会someArray.should.contain('str'),但我无法找到否定案例检查。
someArray.should.contain('str')
答案 0 :(得分:7)
使用.not应该有效:someArray.should.not.contain('str')
.not
someArray.should.not.contain('str')
should.js README未提及.contain()。因此,如果只是插入.not不起作用,请使用.containEql()。
should.js
.contain()
.containEql()