From 46282ac8341bb948a2de220013277bdbe7bb172c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Matte?= Date: Mon, 2 Jun 2025 16:04:54 -0400 Subject: [PATCH] Await notify --- lib/metaltest.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/metaltest.js b/lib/metaltest.js index a6996ef..f4efed2 100644 --- a/lib/metaltest.js +++ b/lib/metaltest.js @@ -74,7 +74,7 @@ const metaltest = (title) => { for (const fn of before) await fn() await test.fn(test) stats('success', test) - notify(reporters, 'success', test) + await notify(reporters, 'success', test) } catch (error) { stats('fail', test, error)