Skip to content

Commit

Permalink
Disable tests for Chrome unstable (#90)
Browse files Browse the repository at this point in the history
WPTS uses a version of ChromeDriver that does not support Chrome 75.
  • Loading branch information
martijndwars committed May 31, 2019
1 parent 630824d commit e8db7c5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ test {
testLogging {
events 'PASSED', 'FAILED', 'SKIPPED'
showStandardStreams true
exceptionFormat 'full'
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,14 +65,14 @@ protected Stream<Configuration> 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)
Expand Down

0 comments on commit e8db7c5

Please sign in to comment.