@@ -26,7 +26,6 @@ public class FlowTest {
2626 public void shouldInvokeBasicFlow () throws Exception {
2727 IntegrationTestRule .TestContext tc = testRule .newTest ();
2828 tc .withDirFrom ("funcs/flowBasic" ).rewritePOM ();
29- // tc.runFn("--verbose", "create", "app", tc.appName());
3029 tc .runFn ("--verbose" , "deploy" , "--create-app" , "--app" , tc .appName (), "--local" );
3130 tc .runFn ("config" , "app" , tc .appName (), "COMPLETER_BASE_URL" , testRule .getFlowURL ());
3231 CmdResult r = tc .runFnWithInput ("1" , "invoke" , tc .appName (), "flowbasic" );
@@ -38,7 +37,6 @@ public void shouldInvokeBasicFlow() throws Exception {
3837 public void shouldInvokeBasicFlowJDK8 () throws Exception {
3938 IntegrationTestRule .TestContext tc = testRule .newTest ();
4039 tc .withDirFrom ("funcs/flowBasicJDK8" ).rewritePOM ();
41- //tc.runFn("--verbose", "create", "app", tc.appName());
4240 tc .runFn ("--verbose" , "deploy" , "--create-app" , "--app" , tc .appName (), "--local" );
4341 tc .runFn ("config" , "app" , tc .appName (), "COMPLETER_BASE_URL" , testRule .getFlowURL ());
4442 CmdResult r = tc .runFnWithInput ("1" , "invoke" , tc .appName (), "flowbasicj8" );
@@ -50,7 +48,6 @@ public void shouldInvokeBasicFlowJDK8() throws Exception {
5048 public void shouldExerciseAllFlow () throws Exception {
5149 IntegrationTestRule .TestContext tc = testRule .newTest ();
5250 tc .withDirFrom ("funcs/flowAllFeatures" ).rewritePOM ();
53- //tc.runFn("--verbose", "create", "app", tc.appName());
5451 tc .runFn ("--verbose" , "deploy" , "--create-app" , "--app" , tc .appName (), "--local" );
5552 tc .runFn ("config" , "app" , tc .appName (), "COMPLETER_BASE_URL" , testRule .getFlowURL ());
5653 CmdResult r = tc .runFnWithInput ("1" , "invoke" , tc .appName (), "flowallfeatures" );
@@ -76,7 +73,6 @@ public void shouldCallExitHooks() throws Exception {
7673 IntegrationTestRule .TestContext tc = testRule .newTest ();
7774 tc .withDirFrom ("funcs/flowExitHooks" ).rewritePOM ();
7875 tc .runFn ("--verbose" , "build" , "--no-cache" );
79- //tc.runFn("--verbose", "create", "app", tc.appName());
8076 tc .runFn ("--verbose" , "deploy" , "--create-app" , "--app" , tc .appName (), "--local" );
8177 tc .runFn ("config" , "app" , tc .appName (), "COMPLETER_BASE_URL" , testRule .getFlowURL ());
8278 tc .runFn ("config" , "app" , tc .appName (), "TERMINATION_HOOK_URL" , "http://" + testRule .getDockerLocalhost () + ":" + 8000 + "/exited" );
@@ -95,7 +91,6 @@ public void shouldCallExitHooks() throws Exception {
9591 public void shouldHandleTimeouts () throws Exception {
9692 IntegrationTestRule .TestContext tc = testRule .newTest ();
9793 tc .withDirFrom ("funcs/flowTimeouts" ).rewritePOM ();
98- //tc.runFn("--verbose", "create", "app", tc.appName());
9994 tc .runFn ("--verbose" , "deploy" , "--create-app" , "--app" , tc .appName (), "--local" );
10095 tc .runFn ("config" , "app" , tc .appName (), "COMPLETER_BASE_URL" , testRule .getFlowURL ());
10196 CmdResult r = tc .runFn ("invoke" , tc .appName (), "flowtimeouts" );
0 commit comments