From 7de81ca673e22203abd3f982d73c61ce9a2abce1 Mon Sep 17 00:00:00 2001 From: Ivan Ortega Alba Date: Thu, 29 Dec 2022 09:14:09 +0100 Subject: [PATCH] test: Fix Jest reporter (#60810) --- public/test/log-reporter.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/test/log-reporter.js b/public/test/log-reporter.js index dbed4dd2201..95275b9514c 100644 --- a/public/test/log-reporter.js +++ b/public/test/log-reporter.js @@ -80,4 +80,4 @@ function formatValue(value) { return hasWhiteSpaces ? `"${escapeQuotes(value)}"` : value; } -module.exports = CustomReporter; +module.exports = LogReporter;