Jestでconsole
を出力させたい。
Jest Runner - Visual Studio Marketplace入れる。
settings.json"jestrunner.jestCommand": "yarn test"
jestjs - Console.log statements output nothing at all in Jest - Stack Overflow
console.log
が表示されないのは、モックされているからみたい。
One of the potential reason that logging is not printing is due to console.log has been mocked. Something as below
// jest-setup.js global.console = { // eslint-disable-next-line no-undef log: jest.fn(), // console.log are ignored in tests // log: console.log, // Keep native behaviour for other methods, use those to print out things in your own tests, not `console.log` error: console.error, warn: console.warn, info: console.info, debug: console.debug, };
console.info
などのjestでモックされていない関数を使う。