我使用 cucumber 和 chai-as-promised 作为断言库。检查计数值的正确方法是什么。我使用相等,但它仅在将字符串转换为整数后才有效。有没有办法直接断言整数值?
this.Then(/^the list should contain "([^"]*)" items$/, function (arg1, callback) {
var count=parseInt(arg1);
expect(element.all(by.repeater('item in list.items')).count()).to.eventually.equal(count).and.notify(callback);
});