我有一个参数化测试:
test.each([myObjWithMyPropertyTrue, myObjWithMyPropertyFalse])
('should do something when %o', (myObj) => {
但不是用 %o 打印整个对象,我想打印属性 MyObj.myProperty 的值
有谁知道这是否可能?
我有一个参数化测试:
test.each([myObjWithMyPropertyTrue, myObjWithMyPropertyFalse])
('should do something when %o', (myObj) => {
但不是用 %o 打印整个对象,我想打印属性 MyObj.myProperty 的值
有谁知道这是否可能?