We plan to use puppeteer to get code coverage reports.
npm i -D puppeteer-to-istanbul
npm i nyc -g
use code like this https://www.educative.io/answers/what-is-code-coverage-in-puppeteer
nyc report --reporter=html but we have many test suites (the test framework is jest+puppeteer), we can only generate coverage reports one by one suite, could puppeteer-to-istanbul generate a report based on all test sets, and could you provide some examples ?Thanks