节点 mocha 数组应该包含一个元素
Node mocha array should contain an element
我想做一个简单的断言,比如
knownArray.should.include('known value')
数组是正确的,但我只是想不出正确的断言来检查数组是否有这个值(索引无关紧要)。我也试过 should.contain
但是这两个都抛出一个错误 Object #<Assertion> has no method 'contain'
(or 'include'
)
如何使用 should
检查数组是否包含元素?
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));
Should.js has the containEql 方法。在你的情况下:
knownArray.should.containEql('known value');
方法 include
、includes
和 contain
您可以在 chai.js 中找到。
我很喜欢柴东西:
https://github.com/RubenVerborgh/Chai-Things
它让您可以执行以下操作:
[{ a: 'cat' }, { a: 'dog' }].should.include({ a: 'cat' });
['cat', 'dog'].should.include('cat');
万一其他人遇到这个问题并正在使用 chai,这就是我根据 should/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,因此您可以忽略我抓取元素的部分,只是为了完整起见。
我想做一个简单的断言,比如
knownArray.should.include('known value')
数组是正确的,但我只是想不出正确的断言来检查数组是否有这个值(索引无关紧要)。我也试过 should.contain
但是这两个都抛出一个错误 Object #<Assertion> has no method 'contain'
(or 'include'
)
如何使用 should
检查数组是否包含元素?
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));
Should.js has the containEql 方法。在你的情况下:
knownArray.should.containEql('known value');
方法 include
、includes
和 contain
您可以在 chai.js 中找到。
我很喜欢柴东西:
https://github.com/RubenVerborgh/Chai-Things
它让您可以执行以下操作:
[{ a: 'cat' }, { a: 'dog' }].should.include({ a: 'cat' });
['cat', 'dog'].should.include('cat');
万一其他人遇到这个问题并正在使用 chai,这就是我根据 should/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,因此您可以忽略我抓取元素的部分,只是为了完整起见。