gpt4 book ai didi

javascript - Jest 期望使用不包含特定字段的对象调用 mock

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

我想验证是否使用一个不包含特定字段的对象调用模拟 API。

expect(api.method).toBeCalledWith(expectedObject);

由于 api.method 调用的实际参数可以是 expectedObject 的子集,如果 actualObject 包含更多内容,则此测试也会通过字段(其中可能包含特定字段)。

如果 actualObject 不等于 expectedObject,我该如何重写测试,使测试失败?

最佳答案

你可以试试这样的东西

// get the first call to your method
const method = api.method.mock.calls[0];

//check if you have expectedObject as a subset of the arguments
expect(method[0]).toMatchObject(expectedObject);

//key is the field that shouldn't be part of the arguments
expect(method[0].has(key)).toEqual(false);

关于javascript - Jest 期望使用不包含特定字段的对象调用 mock,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55159916/

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