mirror of
https://github.com/spring-projects/spring-boot.git
synced 2026-09-17 20:19:06 +00:00
Document spring.test.webtestclient.timeout
Closes gh-46577
This commit is contained in:
+6
@@ -11,6 +11,12 @@
|
||||
"type": "java.lang.Boolean",
|
||||
"description": "Whether observability should be auto-configured in tests.",
|
||||
"defaultValue": false
|
||||
},
|
||||
{
|
||||
"name": "spring.test.webtestclient.timeout",
|
||||
"type": "java.time.Duration",
|
||||
"description": "Maximum amount of time to wait for responses.",
|
||||
"defaultValue": "5s"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
+8
@@ -69,6 +69,14 @@ class WebTestClientAutoConfigurationTests {
|
||||
});
|
||||
}
|
||||
|
||||
@Test
|
||||
void shouldHaveConsistentDefaultTimeout() {
|
||||
this.contextRunner.withUserConfiguration(BaseConfiguration.class).run((context) -> {
|
||||
WebTestClient webTestClient = context.getBean(WebTestClient.class);
|
||||
assertThat(webTestClient).hasFieldOrPropertyWithValue("responseTimeout", Duration.ofSeconds(5));
|
||||
});
|
||||
}
|
||||
|
||||
@Test
|
||||
void shouldCustomizeTimeout() {
|
||||
this.contextRunner.withUserConfiguration(BaseConfiguration.class)
|
||||
|
||||
Reference in New Issue
Block a user