diff --git a/lib/metaltest.js b/lib/metaltest.js index 241ff43..c0fd209 100644 --- a/lib/metaltest.js +++ b/lib/metaltest.js @@ -33,12 +33,13 @@ const metaltest = (title) => { try { for (const fn of before) await fn() await test.fn() + success++ + testSuccess.push(test) notify(reporters, 'success', test) } catch (error) { fail++ - testFail.push(Object.assign({}, test, { error })) notify(reporters, 'fail', test, error) }