0

アサーション ライブラリとしてキュウリと chai-as-promised を使用します。カウント値を確認する正しい方法は何ですか。equal を使用していますが、文字列を整数に変換した後にのみ機能します。整数値を直接アサートする方法はありますか?

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);

  });
4

1 に答える 1