Skip to content

Commit 6d8212f

Browse files
committed
🐛 Reset TestConstants to only run WireMock tests
1 parent ace27c6 commit 6d8212f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • spring/fluentforms-sample-webmvc-app/src/test/java/com/_4point/aem/fluentforms/sampleapp/resources

spring/fluentforms-sample-webmvc-app/src/test/java/com/_4point/aem/fluentforms/sampleapp/resources/TestConstants.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@ public class TestConstants {
2323
// The following Set controls whether the integration tests are run with WireMock, TestContainers or both.
2424
// This is normally set to just WIREMOCK since that is what is required for the GitHub actions CI pipeline,
2525
// but it may be set to other values when testing locally.
26-
// private static Set<IntegrationTestType> TESTS_TO_RUN = EnumSet.of(IntegrationTestType.WIREMOCK);
26+
private static Set<IntegrationTestType> TESTS_TO_RUN = EnumSet.of(IntegrationTestType.WIREMOCK);
2727

2828
// If the local environment has docker installed and has a local AEM container image available, then the
2929
// AEM_IMAGE_NAME can be modified, and the following line uncommented to run both WireMock and an AEM instance
3030
// tests.
31-
private static Set<IntegrationTestType> TESTS_TO_RUN = EnumSet.of(IntegrationTestType.WIREMOCK, IntegrationTestType.AEM_INSTANCE);
31+
// private static Set<IntegrationTestType> TESTS_TO_RUN = EnumSet.of(IntegrationTestType.WIREMOCK, IntegrationTestType.AEM_INSTANCE);
3232

3333

3434
private enum IntegrationTestType { WIREMOCK, AEM_INSTANCE };

0 commit comments

Comments
 (0)