标签: jasmine protractor
可以x.toEqual('hello').or.toEqual('bye')?
x.toEqual('hello').or.toEqual('bye')
我希望能够做出具有多种正确可能性的Expects。
Expects
答案 0 :(得分:1)
您始终可以执行返回布尔值的if语句,然后检查该布尔值是否为真。
if
var test = false; if(x=='hello' || x=='bye'){ test = true; } expect(test).toEqual(true);