1
0
Fork 0
mirror of https://git.jami.net/savoirfairelinux/jami-client-qt.git synced 2025-08-11 02:05:40 +02:00

tests/qml: fix undefined references to appWindow

GitLab: #1780
Change-Id: I166f68c7abdf0f21d8d5dcec85e377c27de798a3
This commit is contained in:
François-Simon Fauteux-Chapleau 2025-07-16 16:17:16 -04:00
parent 6c35561817
commit 84a59889e3
3 changed files with 228 additions and 222 deletions

View file

@ -28,7 +28,8 @@ import "../../../src/app/mainview"
import "../../../src/app/mainview/components" import "../../../src/app/mainview/components"
import "../../../src/app/commoncomponents" import "../../../src/app/commoncomponents"
ListSelectionView { TestWrapper {
ListSelectionView {
id: viewNode id: viewNode
objectName: "ConversationView" objectName: "ConversationView"
managed: false managed: false
@ -59,4 +60,5 @@ ListSelectionView {
} }
} }
} }
}
} }

View file

@ -26,7 +26,8 @@ import net.jami.Enums 1.1
import "../../../src/app/settingsview" import "../../../src/app/settingsview"
import "../../../src/app/commoncomponents" import "../../../src/app/commoncomponents"
SettingsSidePanel { TestWrapper {
SettingsSidePanel {
id: uut id: uut
SignalSpy { SignalSpy {
@ -62,4 +63,5 @@ SettingsSidePanel {
} }
} }
}
} }

View file

@ -26,7 +26,8 @@ import net.jami.Enums 1.1
import "../../../src/app/wizardview" import "../../../src/app/wizardview"
import "../../../src/app/commoncomponents" import "../../../src/app/commoncomponents"
WizardView { TestWrapper {
WizardView {
id: uut id: uut
width: 400 width: 400
@ -214,4 +215,5 @@ WizardView {
compare(spyAccountIsRemoved.count, 1) compare(spyAccountIsRemoved.count, 1)
} }
} }
}
} }