gpt4 book ai didi

javascript - Mocha中获取父语句的描述

转载 作者:行者123 更新时间:2023-12-02 18:15:44 24 4
gpt4 key购买 nike

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

例如:

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

我主要需要这个来自动准确地写入日志文件。感谢您的帮助。

最佳答案

您可以使用以下内容

describe("Describe test", function(){
it("Describe this specific test", function(){
console.log('Title:', this._runnable.title);
});
});

关于javascript - Mocha中获取父语句的描述,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19324912/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com