我想要做的是console.log
如果AVA测试失败,但我找不到任何关于如何执行此操作的文档 - 如果可能的话。
test.afterEach.always(t => {
if(t.hasFailure()){ //something like this
console.log(JSON.stringify(t.context.someJSON));
}
});
test('it fails', t => {
t.context.someJSON = {sample: 'object'}
t.fail('forced failure');
});