jest_实际用法
作者:互联网
- toBe(value): 比较数字、字符串
toEqual(value): 比较对象、数组
toBeNull()
toBeUndefined() - toHaveProperty(keyPath, value): 是否有对应的属性
toContain(item): 是否包含对应的值,括号里写上数组、字符串
toMatch(regexpOrString): 括号里写上正则 - toBeTruthy()
toBeFalsy()
在 JavaScript 中,有六个 falsy 值:false,0,’’,null, undefined,和 NaN。其他一切都是 Truthy - toBeGreaterThan(number): 大于
toBeLessThan(number): 小于
标签:数组,number,value,用法,括号,对应,jest,字符串,实际 来源: https://www.cnblogs.com/wjxIT666/p/15927623.html