diff options
author | Artur Signell <artur@vaadin.com> | 2015-06-04 21:10:57 +0300 |
---|---|---|
committer | Artur Signell <artur@vaadin.com> | 2015-06-04 21:11:27 +0300 |
commit | c05d318ca5ac663921ee1704a0f70533c5e10830 (patch) | |
tree | 91cf7c3d5dd189a385ec7647927267b3c656055b | |
parent | 97ecad0e0a0b638c1a49289bb1637ce882f7788a (diff) | |
download | vaadin-framework-c05d318ca5ac663921ee1704a0f70533c5e10830.tar.gz vaadin-framework-c05d318ca5ac663921ee1704a0f70533c5e10830.zip |
Ensure PhantomJS2 tests are run on version 2
Change-Id: I802992a13c81a43d9f2c021184947fa83b17cdaf
-rw-r--r-- | uitest/src/com/vaadin/tests/tb3/SingleBrowserTestPhantomJS2.java | 1 |
1 files changed, 1 insertions, 0 deletions
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<DesiredCapabilities> getBrowsersToTest() { DesiredCapabilities p2 = Browser.PHANTOMJS.getDesiredCapabilities(); p2.setVersion("2"); + p2.setCapability("phantomjs.binary.path", "/usr/bin/phantomjs2"); return Collections.singletonList(p2); } } |