I have a parameterized test:
test.each([myObjWithMyPropertyTrue, myObjWithMyPropertyFalse])
('should do something when %o', (myObj) => {
but instead of printing the entire object with %o, I want to print the value of property MyObj.myProperty
does anyone know if this is possible?