'How to get time taken coverage report for each test cases in jest

With this below script, we can collect time taken report per suite but not every test case.

jest --runInBand __tests__/*tests.ts --json --verbose --outputFile=testout.json

So is there a way we can check the elapsed time per each test execution?

enter image description here



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source