]> source.dussan.org Git - sonarqube.git/commitdiff
Tests fixup
authorphilippe-perrin-sonarsource <philippe.perrin@sonarsource.com>
Fri, 30 Aug 2019 16:08:11 +0000 (18:08 +0200)
committerSonarTech <sonartech@sonarsource.com>
Tue, 3 Sep 2019 18:21:05 +0000 (20:21 +0200)
server/sonar-web/src/main/js/apps/users/components/__tests__/UserForm-test.tsx

index 3bffac08ef7233ac15f466bde24731bb124d6835..7bf941c28aa8e24aa4c147bb85957c76b5ee6cff 100644 (file)
@@ -19,6 +19,7 @@
  */
 import { shallow } from 'enzyme';
 import * as React from 'react';
+import { Alert } from 'sonar-ui-common/components/ui/Alert';
 import { submit, waitAndUpdate } from 'sonar-ui-common/helpers/testUtils';
 import { createUser, updateUser } from '../../../../api/users';
 import { mockUser } from '../../../../helpers/testMocks';
@@ -47,11 +48,12 @@ it('should correctly show errors', async () => {
   const wrapper = shallowRender();
   submit(wrapper.dive().find('form'));
   await waitAndUpdate(wrapper);
+
   expect(
     wrapper
       .dive()
-      .find('Alert')
-      .dive()
+      .find(Alert)
+      .children()
       .text()
   ).toMatch('default_error_message');
 });
@@ -63,8 +65,8 @@ it('should correctly disable name and email fields for non-local users', () => {
   expect(wrapper.find('Alert').exists()).toBe(true);
   expect(
     wrapper
-      .find('Alert')
-      .dive()
+      .find(Alert)
+      .children()
       .text()
   ).toMatch('users.cannot_update_delegated_user');
 });