Hello All,
I am working on one project in which my code coverage is shown as 46.9%, But in my console it is showing around 91.32%,
As I opened the coverage in detail it is showing that my test files are also included with 0.0% coverage, I want to exclude those files. I have all my test cases inside test folder, and that test folder is inside src folder.
Sonar version is 6.7.7
My Sonar property file:
sonar.language=js
sonar.sources=src
sonar.exclusions=src/test
sonar.coverage.exclusions=src/test
sonar.javascript.lcov.reportPaths=coverage/lcov.info
Please help me on that. Thank You.