Does Jest swallow console.log output?
console.log
// __tests__/log.test.js it(\'logs\', () => { console.log(\'hey\') // expect to see \"hey\" printed in t
The problem is that I was using jest --forceExit. Jest's logging model saves all the logs and spits them out later. --forceExit causes the process to bail before it reaches the spit-out-logs point.
jest --forceExit
--forceExit