diff options
Diffstat (limited to 'uitest/src/com/vaadin/tests/push/ReconnectStreamingTest.java')
-rwxr-xr-x | uitest/src/com/vaadin/tests/push/ReconnectStreamingTest.java | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/uitest/src/com/vaadin/tests/push/ReconnectStreamingTest.java b/uitest/src/com/vaadin/tests/push/ReconnectStreamingTest.java index 0a0275c4d0..4a669e723c 100755 --- a/uitest/src/com/vaadin/tests/push/ReconnectStreamingTest.java +++ b/uitest/src/com/vaadin/tests/push/ReconnectStreamingTest.java @@ -15,9 +15,22 @@ */ package com.vaadin.tests.push; +import org.openqa.selenium.remote.DesiredCapabilities; + +import java.util.List; + public class ReconnectStreamingTest extends ReconnectTest { @Override + public List<DesiredCapabilities> getBrowsersToTest() { + + // PhantomJS doesn't seem to detect disconnection on + // Long-Polling/Streaming: + // https://github.com/ariya/phantomjs/issues/11938 + return getBrowsersExcludingPhantomJS(); + } + + @Override protected Class<?> getUIClass() { return BasicPushStreaming.class; } |