Does Jest swallow console.log output?
console.log
// __tests__/log.test.js it(\'logs\', () => { console.log(\'hey\') // expect to see \"hey\" printed in t
Try adding --verbose to the Jest arguments.
--verbose
This worked for me.