diff options
author | Henri Sara <henri.sara@gmail.com> | 2016-12-19 19:32:04 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-12-19 19:32:04 +0200 |
commit | 09b6d125f685fdb601a3a6fdcf6c42ae7ce3b3fe (patch) | |
tree | 526f13e2c6512c9eed0a75f252dc7fb6eeb5bda9 /uitest | |
parent | d8e1ca9ad8ce76185837053a730676fa9fa18352 (diff) | |
download | vaadin-framework-09b6d125f685fdb601a3a6fdcf6c42ae7ce3b3fe.tar.gz vaadin-framework-09b6d125f685fdb601a3a6fdcf6c42ae7ce3b3fe.zip |
Ignore PushRemoveConnectorsTest (#8040)
Temporarily ignore the test as it does not really work and takes a
very long time during builds.
Diffstat (limited to 'uitest')
-rw-r--r-- | uitest/src/test/java/com/vaadin/tests/push/PushRemoveConnectorsTest.java | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/uitest/src/test/java/com/vaadin/tests/push/PushRemoveConnectorsTest.java b/uitest/src/test/java/com/vaadin/tests/push/PushRemoveConnectorsTest.java index 3070d1efee..3f9ac9ece8 100644 --- a/uitest/src/test/java/com/vaadin/tests/push/PushRemoveConnectorsTest.java +++ b/uitest/src/test/java/com/vaadin/tests/push/PushRemoveConnectorsTest.java @@ -1,11 +1,14 @@ package com.vaadin.tests.push; import org.junit.Assert; +import org.junit.Ignore; import org.junit.Test; import com.vaadin.testbench.elements.ButtonElement; import com.vaadin.tests.tb3.SingleBrowserTest; +// ignored as not really working and takes a very long time +@Ignore public class PushRemoveConnectorsTest extends SingleBrowserTest { @Test @@ -19,8 +22,9 @@ public class PushRemoveConnectorsTest extends SingleBrowserTest { Thread.sleep(5000); int now = getMemoryUsage(); System.out.println("Memory usage: " + now); - if (last == now) + if (last == now) { break; + } last = now; } |