我想做一个简单的断言,比如
knownArray.should.include('known value')
数组是正确的,但我无法弄清楚用于检查数组是否具有此值的正确断言(索引无关紧要)。我也试过了should.contain
,但这两个都引发了Object #<Assertion> has no method 'contain'
(或'include'
)
如何使用should
检查数组是否包含元素?
答案 0 :(得分:15)
Should.js有containEql方法。在你的情况下:
knownArray.should.containEql('known value');
您在chai.js中找到的方法include
,includes
和contain
。
答案 1 :(得分:2)
Mostly from the mocha docs,你可以做到
var assert = require('assert');
var should = require('should');
describe('Array', function(){
describe('#indexOf(thing)', function(){
it('should not be -1 when thing is present', function(){
[1,2,3].indexOf(3).should.not.equal(-1);
});
});
});
或者如果你不介意不使用should,你可以随时
assert.notEqual(-1, knownArray.indexOf(thing));
答案 2 :(得分:1)
我喜欢chai-things:
https://github.com/RubenVerborgh/Chai-Things
让你做以下事情:
[{ a: 'cat' }, { a: 'dog' }].should.include({ a: 'cat' });
['cat', 'dog'].should.include('cat');
答案 3 :(得分:0)
万一其他人遇到这个问题并且正在使用chai,这就是我基于docs应该/ include所使用的
it(`Should grab all li elements using double $$`, () => {
const liEl = $$('ul li');
const fruitList = ['Bananas', 'Apples', 'Oranges', 'Pears'];
liEl.forEach((el) => {
expect(fruitList).to.include(el.getText());
});
});
我使用的是webdriver.io,因此您可以忽略我在其中抓取元素的部分,仅为了完整性而将其包括在内。