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): 小于
上一篇:Asp.net Core中实现自定义身份认证


下一篇:TypeScript 学习笔记(五)- infer