summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/tst_applicationstart.qml5
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/tst_applicationstart.qml b/tests/tst_applicationstart.qml
index b5d7a396..16107ec0 100644
--- a/tests/tst_applicationstart.qml
+++ b/tests/tst_applicationstart.qml
@@ -31,8 +31,11 @@ TestCase {
31 name: "ApplicationStart" 31 name: "ApplicationStart"
32 32
33 Kube.Kube { 33 Kube.Kube {
34 id: kube
34 } 35 }
35 36
36 function test_stuff() { 37 function test_startToWizard() {
38 var accountWizard = findChild(kube, "accountWizard");
39 verify(accountWizard.visible)
37 } 40 }
38} 41}