mirror of
https://github.com/status-im/desktop-ui-tests.git
synced 2025-02-21 08:58:25 +00:00
25 lines
393 B
QML
25 lines
393 B
QML
import QtQuick 2.14
|
|
import QtTest 1.14
|
|
|
|
import QtQuick.Window 2.14
|
|
|
|
TestCase {
|
|
id: root
|
|
|
|
readonly property Window window: baseWindow
|
|
readonly property Item windowContent: contentWindow
|
|
|
|
Window {
|
|
id: baseWindow
|
|
width: 800
|
|
height: 600
|
|
|
|
Item {
|
|
id: contentWindow
|
|
anchors.fill: parent
|
|
}
|
|
|
|
visible: true
|
|
}
|
|
}
|