30

对于额外的日志记录,我需要能够打印当前测试的描述。

我该怎么做(使用 Mocha BDD)?

4

5 回答 5

50

如果您直接在回调内部describe,则可以使用this.titlefor 的标题describethis.fullTitle()获取describe(祖先的标题+此标题的标题)的分层标题。如果您在回调中,it则可以分别使用this.test.titlethis.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
于 2014-10-23T18:35:45.683 回答
11

从内一beforeEach,试试看this.currentTest.title

例子:

beforeEach(function(){
  console.log(this.currentTest.title); 
})

使用摩卡3.4.1

于 2017-09-05T22:48:38.183 回答
3

对于摩卡“^5.1.0”,您可以使用console.log(this.ctx.test.title);

于 2019-08-16T11:09:22.167 回答
-3

在任何测试方法中

it('test method name'), function()  { var testName= this.test.title; }

你可以使用:

afterEach(function(){
    console.log(this.currentTest.title); //displays test title for each test method      
});
于 2017-12-10T16:02:29.910 回答
-10

干得好:

console.log(this.title);
于 2013-08-19T01:34:54.543 回答