From: Artur Signell Date: Thu, 4 Jun 2015 18:10:57 +0000 (+0300) Subject: Ensure PhantomJS2 tests are run on version 2 X-Git-Tag: 7.5.0.rc1~46 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=c05d318ca5ac663921ee1704a0f70533c5e10830;p=vaadin-framework.git Ensure PhantomJS2 tests are run on version 2 Change-Id: I802992a13c81a43d9f2c021184947fa83b17cdaf --- diff --git a/uitest/src/com/vaadin/tests/tb3/SingleBrowserTestPhantomJS2.java b/uitest/src/com/vaadin/tests/tb3/SingleBrowserTestPhantomJS2.java index a5afe3afce..9f4e5938e7 100644 --- a/uitest/src/com/vaadin/tests/tb3/SingleBrowserTestPhantomJS2.java +++ b/uitest/src/com/vaadin/tests/tb3/SingleBrowserTestPhantomJS2.java @@ -28,6 +28,7 @@ public abstract class SingleBrowserTestPhantomJS2 extends public List getBrowsersToTest() { DesiredCapabilities p2 = Browser.PHANTOMJS.getDesiredCapabilities(); p2.setVersion("2"); + p2.setCapability("phantomjs.binary.path", "/usr/bin/phantomjs2"); return Collections.singletonList(p2); } }