mirror of
https://github.com/status-im/desktop-ui-tests.git
synced 2025-01-12 05:44:19 +00:00
17 lines
225 B
QML
17 lines
225 B
QML
|
import QtQuick 2.14
|
||
|
import QtTest 1.14
|
||
|
|
||
|
import QtQuick.Window 2.14
|
||
|
|
||
|
TestCase {
|
||
|
id: root
|
||
|
|
||
|
readonly property Window window: baseWindow
|
||
|
|
||
|
Window {
|
||
|
id: baseWindow
|
||
|
width: 800
|
||
|
height: 600
|
||
|
}
|
||
|
}
|