diff options
author | stanislavh <stanislav.honcharov@sonarsource.com> | 2023-11-22 17:31:14 +0100 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2023-11-23 20:02:58 +0000 |
commit | cd6f3f167b838bdb4d67bb678125731ce84b8fa1 (patch) | |
tree | 15a5d6d9fa9403e50990d66a57fd84047923e59c /server/sonar-web/src/main/js | |
parent | bf72dfddd2c8736ee34841a4aa5e2c1af4e28b7e (diff) | |
download | sonarqube-cd6f3f167b838bdb4d67bb678125731ce84b8fa1.tar.gz sonarqube-cd6f3f167b838bdb4d67bb678125731ce84b8fa1.zip |
SONAR-20461 Hovering/clicking on label label shouldn't interact with target input
Diffstat (limited to 'server/sonar-web/src/main/js')
-rw-r--r-- | server/sonar-web/src/main/js/apps/projects/components/__tests__/CreateApplication-test.tsx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/server/sonar-web/src/main/js/apps/projects/components/__tests__/CreateApplication-test.tsx b/server/sonar-web/src/main/js/apps/projects/components/__tests__/CreateApplication-test.tsx index 45499026bd9..23c6dcb69af 100644 --- a/server/sonar-web/src/main/js/apps/projects/components/__tests__/CreateApplication-test.tsx +++ b/server/sonar-web/src/main/js/apps/projects/components/__tests__/CreateApplication-test.tsx @@ -41,9 +41,9 @@ const ui = { buttonAddApplication: byRole('button', { name: 'projects.create_application' }), createApplicationHeader: byText('qualifiers.create.APP'), mandatoryFieldWarning: byText('fields_marked_with_x_required'), - formNameField: byText('name'), - formKeyField: byText('key'), - formDescriptionField: byText('description'), + formNameField: byRole('textbox', { name: 'name field_required' }), + formKeyField: byRole('textbox', { name: 'key' }), + formDescriptionField: byRole('textbox', { name: 'description' }), formVisibilityField: byText('visibility'), formRadioButtonPrivate: byRole('radio', { name: 'visibility.private' }), formCreateButton: byRole('button', { name: 'create' }), |