git.delta.rocks / unique-network / refs/commits / 7a36e4c3fb65

difftreelog

fix use console.error in requirePallets

Daniel Shiposha2022-08-11parent: #f16741c.patch.diff
in: master

1 file changed

modifiedtests/src/util/helpers.tsdiffbeforeafterboth
93 const missingPalletsMsg = `\tThe following pallets are missing:\n\t- ${missingPallets.join('\n\t- ')}`;93 const missingPalletsMsg = `\tThe following pallets are missing:\n\t- ${missingPallets.join('\n\t- ')}`;
94 const skipMsg = `${skippingTestMsg}\n${missingPalletsMsg}`;94 const skipMsg = `${skippingTestMsg}\n${missingPalletsMsg}`;
9595
96 console.log('\x1b[38:5:208m%s\x1b[0m', skipMsg);96 console.error('\x1b[38:5:208m%s\x1b[0m', skipMsg);
9797
98 mocha.skip();98 mocha.skip();
99 }99 }