0
我曾嘗試來驗證如下柴承諾布爾值處理布爾值,如何柴量角器承諾
expect(2==2).to.eventually.equal(true);
但我得到了以下錯誤:
E/launcher - true is not a thenable.
能
任何人的幫助我如何使用chai promise驗證布爾值。
我曾嘗試來驗證如下柴承諾布爾值處理布爾值,如何柴量角器承諾
expect(2==2).to.eventually.equal(true);
但我得到了以下錯誤:
E/launcher - true is not a thenable.
能
任何人的幫助我如何使用chai promise驗證布爾值。
eventually
表示您正在解決承諾。
2 == 2不是承諾。
expect(2==2).to.equal(true);
這是接近的,試試這個
expect(2==2).to.be.true;
沒錯,但是當我使用它.to.equal工作正常,在真實的情況下,在錯誤的整體特徵文件得到停止。它不會繼續下一個場景。 – KAK