diff options
author | Stas Vilchik <vilchiks@gmail.com> | 2016-03-11 16:20:45 +0100 |
---|---|---|
committer | Stas Vilchik <vilchiks@gmail.com> | 2016-03-11 16:32:00 +0100 |
commit | a03b407d184e1f6c39c7bfe08e451c7b70594c20 (patch) | |
tree | 01f06f6551aea8d37560072a3a3201bd5fc0fee9 /server/sonar-web | |
parent | 3c20c243bc78872f40eaf66392884ae8832c1463 (diff) | |
download | sonarqube-a03b407d184e1f6c39c7bfe08e451c7b70594c20.tar.gz sonarqube-a03b407d184e1f6c39c7bfe08e451c7b70594c20.zip |
better sort coverage measures
Diffstat (limited to 'server/sonar-web')
-rw-r--r-- | server/sonar-web/src/main/js/apps/component-measures/config/domains.js | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/server/sonar-web/src/main/js/apps/component-measures/config/domains.js b/server/sonar-web/src/main/js/apps/component-measures/config/domains.js index 1a0b2da7223..3e91106645a 100644 --- a/server/sonar-web/src/main/js/apps/component-measures/config/domains.js +++ b/server/sonar-web/src/main/js/apps/component-measures/config/domains.js @@ -73,21 +73,43 @@ export default { 'Tests': [ 'overall_coverage', + 'new_overall_coverage', 'overall_line_coverage', + 'new_overall_line_coverage', 'overall_branch_coverage', + 'new_overall_branch_coverage', 'overall_uncovered_lines', + 'new_overall_uncovered_lines', 'overall_uncovered_conditions', + 'new_overall_uncovered_conditions', + 'new_overall_lines_to_cover', + 'coverage', + 'new_coverage', 'line_coverage', + 'new_line_coverage', 'branch_coverage', + 'new_branch_coverage', 'uncovered_lines', + 'new_uncovered_lines', 'uncovered_conditions', + 'new_uncovered_conditions', + 'new_lines_to_cover', + 'it_coverage', + 'new_it_coverage', 'it_line_coverage', + 'new_it_line_coverage', 'it_branch_coverage', + 'new_it_branch_coverage', 'it_uncovered_lines', + 'new_it_uncovered_lines', 'it_uncovered_conditions', + 'new_it_uncovered_conditions', + 'new_it_lines_to_cover', + 'lines_to_cover', + 'tests', 'test_success', 'test_errors', |