gpt4 book ai didi

jestjs - 有没有办法让 `toHaveBeenCalledWith` 匹配正则表达式?

转载 作者:行者123 更新时间:2023-12-04 03:35:45 25 4
gpt4 key购买 nike

我有一个附加随机数然后调用另一个函数的函数。我想检查它是否与传入的文本一起调用并匹配任何随机数。我希望能够在没有 Jest 字面上匹配正则表达式的情况下传递正则表达式。就像是:

 const typeFn = jest.fn();

function type (text) {
typeFn(text + Math.random());
})


type('hello')
expect(typeFn).toHaveBeenCalledWith(/hello\d+/)

最佳答案

您可以使用 expect 中的辅助函数之一。而不是实际值:

expect(typeFn).toHaveBeenCalledWith(expect.stringMatching(/hello\d+/));

这是一个活生生的例子: https://repl.it/@marzelin/FrighteningCapitalConferences

关于jestjs - 有没有办法让 `toHaveBeenCalledWith` 匹配正则表达式?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52192680/

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