]> source.dussan.org Git - vaadin-framework.git/commitdiff
Disable automated testing on Opera until issues are resolved (#12487, #12367, #12800)
authorArtur Signell <artur@vaadin.com>
Wed, 16 Oct 2013 13:33:54 +0000 (16:33 +0300)
committerArtur Signell <artur@vaadin.com>
Wed, 16 Oct 2013 13:33:54 +0000 (16:33 +0300)
Change-Id: Id90abf6b2241aeb4f4e83551647169512a93401b

uitest/src/com/vaadin/tests/tb3/MultiBrowserTest.java

index 587e2db6238ad3143a82e0135896cf05d35ae52e..400353978254a0bae6f523dd0ecef57ac1b7363f 100644 (file)
@@ -43,7 +43,6 @@ public abstract class MultiBrowserTest extends PrivateTB3Configuration {
     public static final int TESTED_SAFARI_VERSION = 6;
     public static final int TESTED_CHROME_VERSION = 29;
     public static final int TESTED_FIREFOX_VERSION = 24;
-    public static final int TESTED_OPERA_VERSION = 12;
 
     static List<DesiredCapabilities> allBrowsers = new ArrayList<DesiredCapabilities>();
     static {
@@ -55,7 +54,9 @@ public abstract class MultiBrowserTest extends PrivateTB3Configuration {
         // Uncomment once we have the capability to run on Safari 6
         // allBrowsers.add(safari(TESTED_SAFARI_VERSION));
         allBrowsers.add(BrowserUtil.chrome(TESTED_CHROME_VERSION));
-        allBrowsers.add(BrowserUtil.opera(TESTED_OPERA_VERSION));
+        // Re-enable this when it is possible to run on a modern Opera version
+        // (15+)
+        // allBrowsers.add(BrowserUtil.opera(15));
 
     }