We are try to integrate sonarcloud with circleci, for each commit our circleci will trigger a build with test cases and project is based on Nodejs. Once the execution is completed, still the dashboard shows code coverage % as 0.
sonar-project.properties
sonar.projectName=test sonar.language=js sonar.sources=src
sonar.tests=src/app/client/src/app/
sonar.javascript.lcov.reportPaths=src/app/client/coverage/lcov.info
sonar.projectKey=harshavardhanc_test
sonar.organization=harshavardhanc
sonar.host.url=https://sonarcloud.io sonar.login=xxxxxxxxx
In the end of circleci build we are calling sonar scanner command and the execution says successfull.
Please help me how to get coverage value in dashboard.