I’m trying to setup code coverage on sonarcloud, I followed every step in here
But somehow, in action of github, it show correct
But in the sonarCloud, it remain the same message “A few extra steps are needed for SonarCloud to analyze your code coverage”
My sonarcloud.properties:
sonar.organization=khanh21011999
This is the name and version displayed in the SonarCloud UI.
sonar.projectName=testUnitTest
sonar.projectVersion=1.0
Path is relative to the sonar-project.properties file. Replace "\" by "/" on Windows.
sonar.sources=./sonar-project.properties
sonar.exclusions=android/**
Encoding of the source code. Default is default system encoding
sonar.sourceEncoding=UTF-8
sonar.javascript.lcov.reportPaths=./coverage/lcov.info
sonar.coverage.exclusions=__mocks__/**,src/types/**
sonar.tests=__TEST__
sonar.test.inclusions=__TEST__/**```