To get verbose mode in Jest, you can run Jest with the --verbose tag.
In packages.json you can write:
"scripts": { "test": "jest --verbose" },
Then you can run npm test
Alternatively, if you use gulp-jest to get Jest in verbose mode, find the index.js file in the gulp-jest folder in node_modules and add verbose: true to the jest.runCLI block.
jest.runCLI({ config: options, verbose: true }
Jonathan huang
source share