DEV Community

Discussion on: What's your setup for JavaScript Testing and Code Coverage

Collapse
 
herrfugbaum profile image
Pascal

I use Jest for my tests, it has Istanbul baked right in.
You can use it with

jest --coverage

or via Jest configuration.

For E2E tests puppeteer sounds like a good fit. There is also a jest plugin for puppeteer.

Collapse
 
joelnet profile image
JavaScript Joel

Ditto