The Log is dead. Long live the Log!
npm i -S the-log
require('the-log');
console.log('echo'); // [2022-02-16T22:06:42.566Z] echo
require('the-log').silent();
describe('Something', () => {
it('should do something', () => {
// test code
});
});