diff options
author | Mathieu Suen <mathieu.suen@sonarsource.com> | 2022-02-21 14:29:11 +0100 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2022-03-11 10:30:55 +0000 |
commit | a21e5da264c70b8ab86c50c67e0bbf626598e246 (patch) | |
tree | ba355522aab63b671c5c4dbb00c3e0f92ec0fd69 /server/sonar-web/src/main/js/apps/projectQualityGate | |
parent | 430ffc7c4f96676636d3f03e47e90035f3c9d3e5 (diff) | |
download | sonarqube-a21e5da264c70b8ab86c50c67e0bbf626598e246.tar.gz sonarqube-a21e5da264c70b8ab86c50c67e0bbf626598e246.zip |
[NO JIRA] Migrate part of quality gates app to RTL
Diffstat (limited to 'server/sonar-web/src/main/js/apps/projectQualityGate')
-rw-r--r-- | server/sonar-web/src/main/js/apps/projectQualityGate/__tests__/__snapshots__/ProjectQualityGateApp-test.tsx.snap | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/server/sonar-web/src/main/js/apps/projectQualityGate/__tests__/__snapshots__/ProjectQualityGateApp-test.tsx.snap b/server/sonar-web/src/main/js/apps/projectQualityGate/__tests__/__snapshots__/ProjectQualityGateApp-test.tsx.snap index 03331f67dba..13d8d45338b 100644 --- a/server/sonar-web/src/main/js/apps/projectQualityGate/__tests__/__snapshots__/ProjectQualityGateApp-test.tsx.snap +++ b/server/sonar-web/src/main/js/apps/projectQualityGate/__tests__/__snapshots__/ProjectQualityGateApp-test.tsx.snap @@ -8,13 +8,13 @@ exports[`renders correctly 1`] = ` "conditions": Array [ Object { "error": "10", - "id": 1, + "id": "1", "metric": "coverage", "op": "LT", }, Object { "error": "10", - "id": 1, + "id": "1", "metric": "new_bugs", "op": "LT", }, @@ -26,13 +26,13 @@ exports[`renders correctly 1`] = ` "conditions": Array [ Object { "error": "10", - "id": 1, + "id": "1", "metric": "coverage", "op": "LT", }, Object { "error": "10", - "id": 1, + "id": "1", "metric": "new_bugs", "op": "LT", }, @@ -45,13 +45,13 @@ exports[`renders correctly 1`] = ` "conditions": Array [ Object { "error": "10", - "id": 1, + "id": "1", "metric": "coverage", "op": "LT", }, Object { "error": "10", - "id": 1, + "id": "1", "metric": "new_bugs", "op": "LT", }, |