如何在Mocha测试中检索当前测试的名称?

时间:2013-08-18 22:30:21

标签: javascript mocha

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

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

5 个答案:

答案 0 :(得分:32)

如果您直接在describe的回调中,则可以使用this.title作为describethis.fullTitle()的标题来获取{describe的分层标题1}}(祖先的头衔+这个头衔)。如果您在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

答案 1 :(得分:2)

beforeEach内,尝试this.currentTest.title

示例:

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

使用Mocha 3.4.1

答案 2 :(得分:0)

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

答案 3 :(得分:-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      
});

答案 4 :(得分:-7)

你走了:

console.log(this.title);