有没有办法获取当前正在运行的测试的名称?
一些(严重简化的)代码可能有助于解释。我希望避免在"test1" / "test2"
:
performTest
describe("some bogus tests", function () {
function performTest(uniqueName, speed) {
var result = functionUnderTest(uniqueName, speed);
expect(result).toBeTruthy();
}
it("test1", function () {
performTest("test1", "fast");
});
it("test2", function () {
performTest("test2", "slow");
});
});
更新 我看到我需要的信息是:
jasmine.currentEnv_.currentSpec.description
或者可能更好:
jasmine.getEnv().currentSpec.description
答案 0 :(得分:12)
jasmine.getEnv().currentSpec.description
答案 1 :(得分:3)
对于任何试图在Jasmine 2中执行此操作的人:您可以对声明进行细微更改,但是要修复它。而不只是做:
it("name for it", function() {});
将it
定义为变量:
var spec = it("name for it", function() {
console.log(spec.description); // prints "name for it"
});
这不需要插件,可以使用标准的Jasmine。
答案 2 :(得分:1)
这不是很漂亮(引入了全局变量),但是您可以使用自定义报告程序来做到这一点:
// current-spec-reporter.js
global.currentSpec = null;
class CurrentSpecReporter {
specStarted(spec) {
global.currentSpec = spec;
}
specDone() {
global.currentSpec = null;
}
}
module.exports = CurrentSpecReporter;
在添加其他记者时将其添加到茉莉花中...
const CurrentSpecReporter = require('./current-spec-reporter.js');
// ...
jasmine.getEnv().addReporter(new CurrentSpecReporter());
然后根据需要在测试/设置过程中提取测试名称...
it('Should have an accessible description', () => {
expect(global.currentSpec.description).toBe('Should have an accessible description');
}