Disabling RequestResponseTests in serverless-web module

Temporarily disable RequestResponseTests in serverless-web module
due to a potential race condition on the CI environment.
This commit is contained in:
Soby Chacko
2023-07-26 13:08:33 -04:00
parent b438c6d014
commit ccf39f603a

View File

@@ -23,6 +23,7 @@ import com.fasterxml.jackson.databind.ObjectMapper;
import jakarta.servlet.http.HttpServletRequest;
import org.junit.jupiter.api.AfterEach;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
@@ -38,6 +39,7 @@ import static org.assertj.core.api.Assertions.assertThat;
* @author Oleg Zhurakousky
*
*/
@Disabled("Disalbe temporarily due to some CI issues on 4.0.x builds")
public class RequestResponseTests {
private ObjectMapper mapper = new ObjectMapper();