From: Artur Signell Date: Wed, 16 Oct 2013 13:33:54 +0000 (+0300) Subject: Disable automated testing on Opera until issues are resolved (#12487, #12367, #12800) X-Git-Tag: 7.1.8~46 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=779c8a0;p=vaadin-framework.git Disable automated testing on Opera until issues are resolved (#12487, #12367, #12800) Change-Id: Id90abf6b2241aeb4f4e83551647169512a93401b --- diff --git a/uitest/src/com/vaadin/tests/tb3/MultiBrowserTest.java b/uitest/src/com/vaadin/tests/tb3/MultiBrowserTest.java index 587e2db623..4003539782 100644 --- a/uitest/src/com/vaadin/tests/tb3/MultiBrowserTest.java +++ b/uitest/src/com/vaadin/tests/tb3/MultiBrowserTest.java @@ -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 allBrowsers = new ArrayList(); 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)); }