From e8db7c52c410b5c153230838c8d3e58129fb6b2a Mon Sep 17 00:00:00 2001 From: Martijn Dwars Date: Thu, 30 May 2019 19:54:45 +0200 Subject: [PATCH] Disable tests for Chrome unstable (#90) WPTS uses a version of ChromeDriver that does not support Chrome 75. --- build.gradle | 1 + .../java/nl/martijndwars/webpush/selenium/SeleniumTests.java | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index e00ce35..2418fe8 100644 --- a/build.gradle +++ b/build.gradle @@ -79,6 +79,7 @@ test { testLogging { events 'PASSED', 'FAILED', 'SKIPPED' showStandardStreams true + exceptionFormat 'full' } } diff --git a/src/test/java/nl/martijndwars/webpush/selenium/SeleniumTests.java b/src/test/java/nl/martijndwars/webpush/selenium/SeleniumTests.java index 00522bb..de1353e 100644 --- a/src/test/java/nl/martijndwars/webpush/selenium/SeleniumTests.java +++ b/src/test/java/nl/martijndwars/webpush/selenium/SeleniumTests.java @@ -65,14 +65,14 @@ protected Stream getConfigurations() { return Stream.of( new Configuration("chrome", "stable", null, GCM_SENDER_ID), new Configuration("chrome", "beta", null, GCM_SENDER_ID), - new Configuration("chrome", "unstable", null, GCM_SENDER_ID), + //new Configuration("chrome", "unstable", null, GCM_SENDER_ID), See #90 new Configuration("firefox", "stable", null, GCM_SENDER_ID), new Configuration("firefox", "beta", null, GCM_SENDER_ID), new Configuration("chrome", "stable", PUBLIC_KEY_NO_PADDING, null), new Configuration("chrome", "beta", PUBLIC_KEY_NO_PADDING, null), - new Configuration("chrome", "unstable", PUBLIC_KEY_NO_PADDING, null), + //new Configuration("chrome", "unstable", PUBLIC_KEY_NO_PADDING, null), See #90 new Configuration("firefox", "stable", PUBLIC_KEY_NO_PADDING, null), new Configuration("firefox", "beta", PUBLIC_KEY_NO_PADDING, null)