diff options
author | Viktor Vorona <viktor.vorona@sonarsource.com> | 2023-11-30 12:17:42 +0100 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2023-11-30 20:03:36 +0000 |
commit | 4d29fed2459567c84c1021c33edc6a2171004c4e (patch) | |
tree | 9ecba12f95035df30b6f106d62bcc8c1eaf622a7 /server/sonar-web/src/main/js | |
parent | a97a60cf8e6bf87fbb5e5cd350adabdaa629eae5 (diff) | |
download | sonarqube-4d29fed2459567c84c1021c33edc6a2171004c4e.tar.gz sonarqube-4d29fed2459567c84c1021c33edc6a2171004c4e.zip |
SONAR-21153 Try to fix UsersApp timeout
Diffstat (limited to 'server/sonar-web/src/main/js')
-rw-r--r-- | server/sonar-web/src/main/js/apps/users/__tests__/UsersApp-it.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/sonar-web/src/main/js/apps/users/__tests__/UsersApp-it.tsx b/server/sonar-web/src/main/js/apps/users/__tests__/UsersApp-it.tsx index c8302bbfbf1..8a5c1240f2f 100644 --- a/server/sonar-web/src/main/js/apps/users/__tests__/UsersApp-it.tsx +++ b/server/sonar-web/src/main/js/apps/users/__tests__/UsersApp-it.tsx @@ -289,7 +289,7 @@ describe('in non managed mode', () => { await user.click(await ui.showMore.find()); - await waitFor(async () => expect(await ui.userRows.findAll()).toHaveLength(12)); + expect(ui.userRows.getAll()).toHaveLength(12); expect(ui.aliceRow.get()).toBeInTheDocument(); }); |