More test coverage on new script processes

This commit is contained in:
2023-06-27 08:45:46 -05:00
parent 598e26d9a1
commit ed22ab5917
3 changed files with 178 additions and 0 deletions

View File

@ -129,6 +129,11 @@ public class TestScriptProcessStep implements BackendStep
output.addValue("scriptLogLines", new ArrayList<>(executionLogger.getScriptLogLines()));
output.addValue("outputObject", testScriptOutput.getOutputObject());
if(testScriptOutput.getException() != null)
{
output.addValue("exception", testScriptOutput.getException());
}
}
catch(Exception e)
{