仅限摩卡进口

时间:2019-04-04 20:05:16

标签: unit-testing mocha

我正在尝试显式导入only来解决棉绒错误,类似于使用

var describe = require("describe").mocha

only是否有类似的导入?

1 个答案:

答案 0 :(得分:0)

jonrsharpe所述,要修复棉绒错误,应正确配置短绒棉布,而不要在代码中进行修复。

但是,要回答您的问题,您可以导入这样的特定方法。

var only = require('mocha').describe.only
var describe = require('mocha').describe

// If you import describe, you get everything beneath too so you can do
only = describe.only // This will be the same as L1 provided that you have describe

在旁注中,如果您使用eslint,则eslint-plugin-mocha值得一看,以便为摩卡咖啡配置短毛绒。