gpt4 book ai didi

javascript - 预期数组但在 Jest 中收到数组

转载 作者:行者123 更新时间:2023-11-30 07:32:34 25 4
gpt4 key购买 nike

我在 Jest 中创建了单元(异步)测试。但是当我得到服务器的响应时:

[
{
name: "My name"
},
{
name: "Another name"
}
]

并测试它:

test('Response from server', () => {
get('my-url').end(error, response) => {
expect(response.body).toBe(expect.any(Array))
}
})

出现一些错误:

Comparing two different types of values. Expected Array but received array.

当我使用 expect(response.body).any(Array) 时,它工作正常。但是 expect.toBe() 有什么修复方法吗?

最佳答案

您应该使用toEqual(而不是toBe)来比较对象和数组。仅将 toBe 用于标量数据类型。如果您想检查响应数据类型,请使用 typeof 运算符

关于javascript - 预期数组但在 Jest 中收到数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46255991/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com