ATF: While creating custom step config make sure to define both "stepResult.setSuccess()" and "stepResult.setFailed()"While creating a custom step config, make sure both stepResult.setSuccess() and stepResult.setFailed() are defined, else the test will remain in pending state.Steps to Reproduce:1. Create a new step config by navigating to Step Configurations from the left nav. Set name, order and template reminder to any value.2. Add the below code in the Step execution script (function executeStep(inputs, outputs, stepResult, timeout) { if ("hello" === "world") { stepResult.setSuccess(); } }(inputs, outputs, stepResult, timeout)); 3. Now navigate to the Tests from left nav and create a new test.4. Add the above step to the test.5. Run the test.The test result will show that the test is in pending state even though the test is completed.