gpt4 book ai didi

Jasmine 2 : get current spec name

转载 作者:行者123 更新时间:2023-12-02 04:20:42 25 4
gpt4 key购买 nike

在 Jasmine 1.3 中,我们可以通过此选项获取当前规范和套件名称:

describe("name for describe", function () {
it("name for it", function () {
console.log(this.suite.getFullName()); // would print "name for describe"
console.log(this.description); // would print "name for it"
});
});

这在 Jasmine 2.x 中不再起作用。有人知道如何获取这些吗?

谢谢。

最佳答案

我添加一个新的 jasmine 报告器,然后获取规范名称,而无需在每个规范上定义 N 变量。希望能帮到您,谢谢。

var reporterCurrentSpec = {
specStarted: function(result) {
this.name = result.fullName;
}
};
jasmine.getEnv().addReporter(reporterCurrentSpec);

关于 Jasmine 2 : get current spec name,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29118705/

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