Skip to content

Commit 7712047

Browse files
committed
Don't fail on javascript errors
1 parent 40d439c commit 7712047

File tree

5 files changed

+5
-0
lines changed

5 files changed

+5
-0
lines changed

servlet/spring-boot/java/saml2/custom-urls/src/integTest/java/example/CustomUrlsApplicationITests.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ public class CustomUrlsApplicationITests {
5252

5353
@BeforeEach
5454
void setup() {
55+
this.webClient.getOptions().setThrowExceptionOnScriptError(false);
5556
this.webClient.getCookieManager().clearCookies();
5657
}
5758

servlet/spring-boot/java/saml2/login-single-tenant/src/integTest/java/example/Saml2LoginApplicationITests.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ public class Saml2LoginApplicationITests {
4949

5050
@BeforeEach
5151
void setup() {
52+
this.webClient.getOptions().setThrowExceptionOnScriptError(false);
5253
this.webClient.getCookieManager().clearCookies();
5354
}
5455

servlet/spring-boot/java/saml2/login/src/integTest/java/example/Saml2LoginApplicationITests.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ public class Saml2LoginApplicationITests {
4949

5050
@BeforeEach
5151
void setup() {
52+
this.webClient.getOptions().setThrowExceptionOnScriptError(false);
5253
this.webClient.getCookieManager().clearCookies();
5354
}
5455

servlet/spring-boot/java/saml2/refreshable-metadata/src/integTest/java/example/Saml2LoginApplicationITests.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ public class Saml2LoginApplicationITests {
4545

4646
@BeforeEach
4747
void setup() {
48+
this.webClient.getOptions().setThrowExceptionOnScriptError(false);
4849
this.webClient.getCookieManager().clearCookies();
4950
}
5051

servlet/spring-boot/java/saml2/saml-extension-federation/src/integTest/java/example/SamlExtensionFederationApplicationITests.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ public class SamlExtensionFederationApplicationITests {
5454

5555
@BeforeEach
5656
void setup() {
57+
this.webClient.getOptions().setThrowExceptionOnScriptError(false);
5758
this.webClient.getCookieManager().clearCookies();
5859
}
5960

0 commit comments

Comments
 (0)