fixed imports

This commit is contained in:
Anastasiya S 2021-10-15 15:48:53 +03:00
parent 96cc23fe2c
commit f4c5691455
3 changed files with 9 additions and 3 deletions

View File

@ -17,7 +17,7 @@ QtObject {
QtObject {
property StatusBaseText title
property StatusBaseText subtitle
property StatusRoundImage avatar
property StatusRoundedImage avatar
property StatusFlatRoundButton closeBtn
property var actionButton
}

View File

@ -3,7 +3,7 @@ import QtQuick.Window 2.14
import QtTest 1.14
import "base"
import "status-desktop/ui/onboarding" as DesktopComponents
import "status-desktop/ui/app/AppLayouts/Onboarding/popups" as DesktopComponents
WindowTestCase {

View File

@ -3,7 +3,7 @@ import QtQuick.Window 2.14
import QtTest 1.14
import "base"
import "status-desktop/ui/onboarding" as DesktopComponents
import "status-desktop/ui/app/AppLayouts/Onboarding/popups" as DesktopComponents
WindowTestCase {
@ -45,6 +45,12 @@ WindowTestCase {
wait(2000)
compare(beforeGetStartedModal.height, 318, "height should be 318")
compare(beforeGetStartedModal.width, 480, "width should be 480")
var getStartedButton = Helpers
.getObjectByObjectName(beforeGetStartedModal, "getStartedBtn")
verify(!!getStartedButton, "Get Started Button is not present")
print (getStartedButton)
beforeGetStartedModal.destroy()
}