From 7a36e4c3fb6537198f3cd9a9b8a80d2e5d1855aa Mon Sep 17 00:00:00 2001 From: Daniel Shiposha Date: Thu, 11 Aug 2022 07:52:41 +0000 Subject: [PATCH] fix: use console.error in requirePallets --- --- a/tests/src/util/helpers.ts +++ b/tests/src/util/helpers.ts @@ -93,7 +93,7 @@ const missingPalletsMsg = `\tThe following pallets are missing:\n\t- ${missingPallets.join('\n\t- ')}`; const skipMsg = `${skippingTestMsg}\n${missingPalletsMsg}`; - console.log('\x1b[38:5:208m%s\x1b[0m', skipMsg); + console.error('\x1b[38:5:208m%s\x1b[0m', skipMsg); mocha.skip(); } -- gitstuff