如果我在不同的功能中多次使用 use in this function,callonce 函数是否会再次执行该功能?

Does the callonce function executes the feature again if i use use in this function multiple times in different features?

我的项目中有多个功能文件。其中一个功能文件创建令牌。我只想在测试开始时调用此功能一次,然后在另一个功能中使用令牌,而无需一次又一次地执行令牌功能。

有人可以帮我解决这个问题吗?

查看 karate-config.js 中的 callSingle() 并参考文档:https://github.com/intuit/karate#hooks

var result = karate.callSingle('classpath:tokens.feature');