test(StatusChatList): Added `objectName` property needed for automation

This commit is contained in:
Noelia 2022-07-26 15:41:51 +02:00 committed by Noelia
parent 431aab7bb8
commit 0040a2d86b
1 changed files with 2 additions and 0 deletions

View File

@ -40,6 +40,7 @@ Column {
model: statusChatList.model
delegate: Item {
id: draggable
objectName: model.name
width: statusChatList.width
height: statusChatListItem.height
property alias chatListItem: statusChatListItem
@ -210,6 +211,7 @@ Column {
Repeater {
id: statusChatListItems
objectName: "chatListItems"
model: delegateModel
}