标签: chai
是否可以使用chai断言数组包含多个特定项?
例如,我希望这可行:
['foo', 'bar'].should.include(['foo', 'bar'])
我也试过这个,但它只断言第一个项目存在:
['foo', 'bar'].should.include('foo', 'bar') // variable args instead of array
我错过了什么?
答案 0 :(得分:11)
您可以使用members来预期数组成员。
例如:
UIWindow