mirror of
https://github.com/status-im/desktop-ui-tests.git
synced 2025-02-10 19:56:23 +00:00
19 lines
272 B
QML
19 lines
272 B
QML
|
import QtQuick 2.14
|
||
|
import QtTest 1.14
|
||
|
|
||
|
import StatusQ.Core.Theme 0.1
|
||
|
|
||
|
TestCase {
|
||
|
name: "initialTest"
|
||
|
|
||
|
function initTestCase() {
|
||
|
}
|
||
|
|
||
|
function cleanupTestCase() {
|
||
|
}
|
||
|
|
||
|
function test_case1() {
|
||
|
verify(!!Theme.palette, "Theme available");
|
||
|
}
|
||
|
}
|