Is it a way to call a function in case of error?
I have a test like that:
t.true(ARRAY.every(function(item){
return item.label
}), 'Every item should have label')
So I am looking for a callback to specify which item hasn't label in case of failing.