Skip to content

Commit

Permalink
Fixes #4257 - Fix tests in test/server/wasp module (#4277)
Browse files Browse the repository at this point in the history
  • Loading branch information
mnriem authored Nov 26, 2024
1 parent 10074f8 commit 00660b7
Show file tree
Hide file tree
Showing 5 changed files with 2 additions and 9 deletions.
2 changes: 2 additions & 0 deletions test/server/wasp/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,8 @@
<artifactId>maven-failsafe-plugin</artifactId>
<configuration>
<forkCount>1</forkCount>
<reuseForks>false</reuseForks>
<rerunFailingTestsCount>100</rerunFailingTestsCount>
<systemPropertyVariables>
<httpPort>${httpPort}</httpPort>
</systemPropertyVariables>
Expand Down
2 changes: 0 additions & 2 deletions test/server/wasp/src/test/java/wasp/HelloTagJspIT.java
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@
import java.net.http.HttpResponse;
import java.net.http.HttpResponse.BodyHandlers;
import static org.junit.jupiter.api.Assertions.assertTrue;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;

/**
Expand All @@ -48,7 +47,6 @@ class HelloTagJspIT {
*
* @throws Exception when a serious error occurs.
*/
@Disabled
@Test
void testHelloTagJsp() throws Exception {
HttpClient client = HttpClient.newHttpClient();
Expand Down
2 changes: 0 additions & 2 deletions test/server/wasp/src/test/java/wasp/HelloTld2JspIT.java
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@
import java.net.http.HttpResponse;
import java.net.http.HttpResponse.BodyHandlers;
import static org.junit.jupiter.api.Assertions.assertTrue;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;

/**
Expand All @@ -48,7 +47,6 @@ class HelloTld2JspIT {
*
* @throws Exception when a serious error occurs.
*/
@Disabled
@Test
void testHelloTld2Jsp() throws Exception {
HttpClient client = HttpClient.newHttpClient();
Expand Down
2 changes: 0 additions & 2 deletions test/server/wasp/src/test/java/wasp/HelloTldJspIT.java
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@
import java.net.http.HttpResponse;
import java.net.http.HttpResponse.BodyHandlers;
import static org.junit.jupiter.api.Assertions.assertTrue;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;

/**
Expand All @@ -48,7 +47,6 @@ class HelloTldJspIT {
*
* @throws Exception when a serious error occurs.
*/
@Disabled
@Test
void testHelloTldJsp() throws Exception {
HttpClient client = HttpClient.newHttpClient();
Expand Down
3 changes: 0 additions & 3 deletions test/server/wasp/src/test/java/wasp/IndexJspIT.java
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@
import java.net.http.HttpResponse.BodyHandlers;
import static org.junit.jupiter.api.Assertions.assertFalse;
import static org.junit.jupiter.api.Assertions.assertTrue;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;

/**
Expand All @@ -49,7 +48,6 @@ class IndexJspIT {
*
* @throws Exception when a serious error occurs.
*/
@Disabled
@Test
void testIndexJsp() throws Exception {
HttpClient client = HttpClient.newHttpClient();
Expand All @@ -66,7 +64,6 @@ void testIndexJsp() throws Exception {
*
* @throws Exception when a serious error occurs.
*/
@Disabled
@Test
void testIndexJsp2() throws Exception {
HttpClient client = HttpClient.newHttpClient();
Expand Down

0 comments on commit 00660b7

Please sign in to comment.