aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tests/auto/controls/data/tst_tooltip.qml29
1 files changed, 0 insertions, 29 deletions
diff --git a/tests/auto/controls/data/tst_tooltip.qml b/tests/auto/controls/data/tst_tooltip.qml
index 6d45b09d..4b4bf4fa 100644
--- a/tests/auto/controls/data/tst_tooltip.qml
+++ b/tests/auto/controls/data/tst_tooltip.qml
@@ -238,35 +238,6 @@ TestCase {
}
}
- function test_openDuringExitTransitionWithTimeout() {
- let control = createTemporaryObject(toolTipWithExitTransition, testCase, { timeout: 250 })
- verify(control)
-
- let openedSpy = signalSpy.createObject(control, { target: control, signalName: "opened" })
- verify(openedSpy.valid)
-
- control.open()
- verify(control.visible)
- // Can't be fully open yet because the enter transition has only just started.
- compare(control.opened, false)
- compare(control.enter.running, true)
- // Wait for it to have opened. We don't check that the opened property is still true
- // because it can result in hard-to-reproduce flakiness. Instead we just check that
- // it was opened at some point.
- tryCompare(openedSpy, "count", 1)
-
- // Let it timeout and begin the exit transition.
- tryCompare(control, "opened", false)
- verify(control.visible)
- tryCompare(control.exit, "running", true)
- verify(control.visible)
-
- // Quickly open it again; it should still timeout eventually.
- control.open()
- tryCompare(openedSpy, "count", 2)
- tryCompare(control.exit, "running", true)
- }
-
function test_makeVisibleWhileExitTransitionRunning_data() {
return [
{ tag: "imperative", imperative: true },