javascript 如何在Cypress中使用'should'来Assert原始数据类型?

jslywgbw  于 2023-05-05  发布在  Java
关注(0)|答案(1)|浏览(163)

如何使用Cypress的shouldhttps://docs.cypress.io/api/commands/should)来Assert主类型对象(而不是expectassert命令)
我想更好地理解为什么这段代码

it('', function() {
    const x = 200
    x.should('be.greaterThan', 100)
})

返回x.should is not a function

b4lqfgs4

b4lqfgs41#

should用于cy命令。
所以如果你真的想用你的例子来做,你可以这样做:

it('', function() {
    const x = 200
    cy.wrap(x).should('be.greaterThan', 100)
})

但在我们的例子中,我会保留expect

相关问题