0

很简单的问题,有没有办法it在 Node.js 上获取 Mocha 中父 () 语句的描述?

例如:

describe("Describe test", function(){
    it("Describe this specific test", function(){
        console.log(message); // Where message is "Describe this specific test"
    });
});

我主要需要它来自动准确地编写日志文件。谢谢你的帮助。

4

2 回答 2

2

你可以使用以下

describe("Describe test", function(){
  it("Describe this specific test", function(){
    console.log('Title:', this._runnable.title);
  });
});
于 2013-10-11T19:19:12.930 回答
0

不幸的是,这似乎不可能:https ://github.com/visionmedia/mocha/issues/620

于 2013-10-11T19:17:55.717 回答