aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-web/src/main/js/apps/quality-profiles
diff options
context:
space:
mode:
authorStas Vilchik <stas.vilchik@sonarsource.com>2018-10-24 09:56:27 +0200
committerSonarTech <sonartech@sonarsource.com>2018-10-26 20:21:00 +0200
commit3026740ee3e483b542aca2fad5f5e79a931faa87 (patch)
treec9866b262771baa0bd3470b8d831392c6ced1f92 /server/sonar-web/src/main/js/apps/quality-profiles
parent69bcb8faa2f40f0e0e6e6a8427d178c02df2eff6 (diff)
downloadsonarqube-3026740ee3e483b542aca2fad5f5e79a931faa87.tar.gz
sonarqube-3026740ee3e483b542aca2fad5f5e79a931faa87.zip
update web dependencies
Diffstat (limited to 'server/sonar-web/src/main/js/apps/quality-profiles')
-rw-r--r--server/sonar-web/src/main/js/apps/quality-profiles/components/__tests__/__snapshots__/ProfileActions-test.tsx.snap12
1 files changed, 6 insertions, 6 deletions
diff --git a/server/sonar-web/src/main/js/apps/quality-profiles/components/__tests__/__snapshots__/ProfileActions-test.tsx.snap b/server/sonar-web/src/main/js/apps/quality-profiles/components/__tests__/__snapshots__/ProfileActions-test.tsx.snap
index 86a903e0bef..09322081e09 100644
--- a/server/sonar-web/src/main/js/apps/quality-profiles/components/__tests__/__snapshots__/ProfileActions-test.tsx.snap
+++ b/server/sonar-web/src/main/js/apps/quality-profiles/components/__tests__/__snapshots__/ProfileActions-test.tsx.snap
@@ -1,7 +1,7 @@
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`renders with all permissions 1`] = `
-<React.Fragment>
+<Fragment>
<ActionsDropdown>
<ActionsDropdownItem
id="quality-profile-activate-more-rules"
@@ -65,11 +65,11 @@ exports[`renders with all permissions 1`] = `
delete
</ActionsDropdownItem>
</ActionsDropdown>
-</React.Fragment>
+</Fragment>
`;
exports[`renders with no permissions 1`] = `
-<React.Fragment>
+<Fragment>
<ActionsDropdown>
<ActionsDropdownItem
download="foo.xml"
@@ -93,11 +93,11 @@ exports[`renders with no permissions 1`] = `
compare
</ActionsDropdownItem>
</ActionsDropdown>
-</React.Fragment>
+</Fragment>
`;
exports[`renders with permission to edit only 1`] = `
-<React.Fragment>
+<Fragment>
<ActionsDropdown>
<ActionsDropdownItem
id="quality-profile-activate-more-rules"
@@ -141,5 +141,5 @@ exports[`renders with permission to edit only 1`] = `
rename
</ActionsDropdownItem>
</ActionsDropdown>
-</React.Fragment>
+</Fragment>
`;