对于额外的日志记录,我需要能够打印当前测试的描述。
我该怎么做(使用 Mocha BDD)?
如果您直接在回调内部describe
,则可以使用this.title
for 的标题describe
或this.fullTitle()
获取describe
(祖先的标题+此标题的标题)的分层标题。如果您在回调中,it
则可以分别使用this.test.title
或this.test.fullTitle()
。所以:
describe("top", function() {
console.log(this.title);
console.log(this.fullTitle());
it("test", function () {
console.log(this.test.title);
console.log(this.test.fullTitle());
});
});
上面的console.log
语句将输出:
top
top
test
top test
这是一个更完整的示例,显示标题如何根据嵌套而变化:
function dump () {
console.log("running: (fullTitle)", this.test.fullTitle(), "(title)",
this.test.title);
}
function directDump() {
console.log("running (direct): (fullTitle)", this.fullTitle(), "(title)",
this.title);
}
describe("top", function () {
directDump.call(this);
it("test 1", dump);
it("test 2", dump);
describe("level 1", function () {
directDump.call(this);
it("test 1", dump);
it("test 2", dump);
});
});
console.log
语句将输出:
running (direct): (fullTitle) top (title) top
running (direct): (fullTitle) top level 1 (title) level 1
running: (fullTitle) top test 1 (title) test 1
running: (fullTitle) top test 2 (title) test 2
running: (fullTitle) top level 1 test 1 (title) test 1
running: (fullTitle) top level 1 test 2 (title) test 2
从内一beforeEach
,试试看this.currentTest.title
。
例子:
beforeEach(function(){
console.log(this.currentTest.title);
})
使用摩卡3.4.1
。
对于摩卡“^5.1.0”,您可以使用console.log(this.ctx.test.title);
在任何测试方法中
it('test method name'), function() { var testName= this.test.title; }
你可以使用:
afterEach(function(){
console.log(this.currentTest.title); //displays test title for each test method
});
干得好:
console.log(this.title);