我在雅斯特建立了单位(Aync)测试。 但是,当我从服务器得到回复时:
[
{
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. person).any(Array)时进行工作。 但<代码>expect.toBe()是否有任何固定办法?