如何在mocha-param
中添加仅支持功能和跳过功能?
import { itParam } from "mocha-param";
context("Test_XYZ" {
itParam.only("MyTest_${value}", [A,B,C], data => {
//Do some assertion with data
});
itParam.skip("MyTest_${value}", [A,B,C], data => {
//Do some assertion with data
});
});