Skip to content

Commit c70b7dc

Browse files
authored
Merge pull request #91 from web-push-libs/fix-build
Disable tests for Chrome unstable (#90)
2 parents 630824d + e8db7c5 commit c70b7dc

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

build.gradle

+1
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,7 @@ test {
7979
testLogging {
8080
events 'PASSED', 'FAILED', 'SKIPPED'
8181
showStandardStreams true
82+
exceptionFormat 'full'
8283
}
8384
}
8485

src/test/java/nl/martijndwars/webpush/selenium/SeleniumTests.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -65,14 +65,14 @@ protected Stream<Configuration> getConfigurations() {
6565
return Stream.of(
6666
new Configuration("chrome", "stable", null, GCM_SENDER_ID),
6767
new Configuration("chrome", "beta", null, GCM_SENDER_ID),
68-
new Configuration("chrome", "unstable", null, GCM_SENDER_ID),
68+
//new Configuration("chrome", "unstable", null, GCM_SENDER_ID), See #90
6969

7070
new Configuration("firefox", "stable", null, GCM_SENDER_ID),
7171
new Configuration("firefox", "beta", null, GCM_SENDER_ID),
7272

7373
new Configuration("chrome", "stable", PUBLIC_KEY_NO_PADDING, null),
7474
new Configuration("chrome", "beta", PUBLIC_KEY_NO_PADDING, null),
75-
new Configuration("chrome", "unstable", PUBLIC_KEY_NO_PADDING, null),
75+
//new Configuration("chrome", "unstable", PUBLIC_KEY_NO_PADDING, null), See #90
7676

7777
new Configuration("firefox", "stable", PUBLIC_KEY_NO_PADDING, null),
7878
new Configuration("firefox", "beta", PUBLIC_KEY_NO_PADDING, null)

0 commit comments

Comments
 (0)