如何使用Cypress的should
(https://docs.cypress.io/api/commands/should)来Assert主类型对象(而不是expect
或assert
命令)
我想更好地理解为什么这段代码
it('', function() {
const x = 200
x.should('be.greaterThan', 100)
})
返回x.should is not a function
如何使用Cypress的should
(https://docs.cypress.io/api/commands/should)来Assert主类型对象(而不是expect
或assert
命令)
我想更好地理解为什么这段代码
it('', function() {
const x = 200
x.should('be.greaterThan', 100)
})
返回x.should is not a function
1条答案
按热度按时间b4lqfgs41#
should
用于cy
命令。所以如果你真的想用你的例子来做,你可以这样做:
但在我们的例子中,我会保留
expect