我正在使用Jest为我的Node.js应用程序编写单元测试,并且我试图测试API端点是否返回具有一组预定属性的对象。我有以下内容:
const sampleResponse = {
"Game": "GameName",
"World": "2",
"Location": "ServerLocation",
"Timestamp": 1516204557853,
"alive": true,
"time": 10.1,
"min": 8.927,
"max": 10.154,
"avg": 9.409
};
然后我使用以下代码测试对象属性:
test("Location for server cluster exists, and returns an array of objects", () => {
return Request(Routes.LocationSpecific).then((result) => {
expect(result[0]).toMatchObject(sampleResponse);
});
});
result
是包含与上述对象类似的数据的对象数组,而我只是匹配result[0]
。
测试失败,因为从我的API端点返回的每个对象属性的值与上面的示例数据不匹配。属性存在,红色出现在我的终端中,不匹配的值,但我想让它变绿。
有没有办法将result[0]
的所有给定属性与样本对象匹配,而不管它们的值是什么?
答案 0 :(得分:3)
比较键的数组:
expect(Object.keys(result[0])).toEqual(Object.keys(sampleResponse));