如何用 Jest 断言数据类型

新手上路,请多包涵

我正在使用 Jest 来测试我的 Node 应用程序。

我是否可以期望/断言一个值是日期对象?

expect(typeof result).toEqual(typeof Date())

是我的尝试,但自然返回 [Object]。所以这也会通过{}。

谢谢!

原文由 Jack.c 发布,翻译遵循 CC BY-SA 4.0 许可协议

阅读 745
1 个回答

对于具有较新版本的 Jest > 16.0.0

有一个名为 toBeInstanceOf 的新匹配器。您可以使用匹配器来比较值的实例。

例子:

 expect(result).toBeInstanceOf(Date)


对于版本 < 16.0.0 的玩笑:

使用 instanceof 来证明 result 变量是否是 Date 对象。

例子:

 expect(result instanceof Date).toBe(true)


匹配常见类型的另一个示例:

boolean

 expect(typeof target).toBe("boolean")

number

 expect(typeof target).toBe("number")

string

 expect(typeof target).toBe("string")

array

 expect(Array.isArray(target)).toBe(true)

object

 expect(target && typeof target === 'object').toBe(true)

null

 expect(target === null).toBe(true)

undefined

 expect(target === undefined).toBe(true)

function

 expect(typeof target).toBe('function')

Promise async function

 expect(!!target && typeof target.then === 'function').toBe(true)


匹配更多类型的另一个示例:

float ( _十进制数。即 3.14137.03 等_)

 expect(Number(target) === target && target % 1 !== 0).toBe(true)

Promise async function 返回一个 Error

 await expect(asyncFunction()).rejects.toThrow(errorMessage)


参考:

原文由 Laode Muhammad Al Fatih 发布,翻译遵循 CC BY-SA 4.0 许可协议

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题