summaryrefslogtreecommitdiffstats
path: root/uitest
diff options
context:
space:
mode:
authorArtur Signell <artur@vaadin.com>2015-10-01 22:37:21 +0300
committerVaadin Code Review <review@vaadin.com>2015-10-07 09:23:54 +0000
commit869b795e6478c34e6593b5f6ace2fe265973ebbd (patch)
tree7c9b59cf447de79494ddd6977d3551622591ad3d /uitest
parentbe3cc216f2826a50a66c4473c638a7137ee823de (diff)
downloadvaadin-framework-869b795e6478c34e6593b5f6ace2fe265973ebbd.tar.gz
vaadin-framework-869b795e6478c34e6593b5f6ace2fe265973ebbd.zip
Change ValoIcons to ThemeIcons and moved to base (#18472)
Change-Id: I7122252e9b238fdca0383d0698623fe5a9e3f262
Diffstat (limited to 'uitest')
-rw-r--r--uitest/src/com/vaadin/tests/components/grid/basicfeatures/GridSortingIndicatorsTest.java9
1 files changed, 9 insertions, 0 deletions
diff --git a/uitest/src/com/vaadin/tests/components/grid/basicfeatures/GridSortingIndicatorsTest.java b/uitest/src/com/vaadin/tests/components/grid/basicfeatures/GridSortingIndicatorsTest.java
index b6bf2b35d1..5eb05c61ca 100644
--- a/uitest/src/com/vaadin/tests/components/grid/basicfeatures/GridSortingIndicatorsTest.java
+++ b/uitest/src/com/vaadin/tests/components/grid/basicfeatures/GridSortingIndicatorsTest.java
@@ -16,8 +16,10 @@
package com.vaadin.tests.components.grid.basicfeatures;
import java.io.IOException;
+import java.util.List;
import org.junit.Test;
+import org.openqa.selenium.remote.DesiredCapabilities;
import com.vaadin.testbench.elements.ButtonElement;
import com.vaadin.testbench.parallel.TestCategory;
@@ -26,6 +28,13 @@ import com.vaadin.tests.tb3.MultiBrowserTest;
@TestCategory("grid")
public class GridSortingIndicatorsTest extends MultiBrowserTest {
+ @Override
+ public List<DesiredCapabilities> getBrowsersToTest() {
+ List<DesiredCapabilities> browsers = getBrowsersExcludingPhantomJS();
+ browsers.add(PHANTOMJS2());
+ return browsers;
+ }
+
@Test
public void testSortingIndicators() throws IOException {
openTestURL();