Skip to content

Commit

Permalink
Disables tests in LifecycleMvcAutoConfigurationTests
Browse files Browse the repository at this point in the history
  • Loading branch information
spencergibb committed Aug 5, 2024
1 parent bf7ddb1 commit 1fff6f1
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
import java.util.function.Function;

import org.assertj.core.util.Lists;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;

import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
Expand Down Expand Up @@ -57,6 +58,7 @@ public void environmentWebEndpointExtensionGloballyDisabled() {
}

@Test
@Disabled("TODO: https://github.com/spring-cloud/spring-cloud-commons/issues/1362")
public void environmentWebEndpointExtensionEnabled() {
beanCreated("writableEnvironmentEndpointWebExtension", "management.endpoint.env.enabled=true",
"management.endpoint.env.post.enabled=true", "management.endpoints.web.exposure.include=env");
Expand Down Expand Up @@ -117,6 +119,7 @@ public void resumeEndpointRestartDisabled() {
}

@Test
@Disabled("TODO: https://github.com/spring-cloud/spring-cloud-commons/issues/1362")
public void resumeEndpointGloballyDisabled() {
beanNotCreated("resumeEndpoint", "management.endpoint.default.enabled=false");
}
Expand Down

0 comments on commit 1fff6f1

Please sign in to comment.