Our current setup involves an Angular front end and a Java backend for our application. We utilize selenium through Jenkins to execute a series of regression/integration tests on it.
One of our goals is to generate a comprehensive report illustrating the code coverage of the tests. While JaCoCo can provide us with coverage details for the Java code, we are wondering if there is a similar tool that can show us the percentage of JavaScript code being tested.
It's worth noting that the application being tested is not hosted on the same server as the tests or the Jenkins server.