I am trying to run the unit tests in my project via the command line:
(:test)
function simple(logger as Logger) as Boolean {
Test.assertEqual(true, true);
return true;
}
/<SDK>/bin/connectiq &
sleep 5
/<SDK>/bin/monkeydo bin/<APPNAME>.prg fr970 -t
And even when the tests pass I am getting an exit status 1 return code:
Executing test simple...
PASS
==============================================================================
RESULTS
Test: Status:
simple PASS
Ran 1 test
PASSED (passed=1, failed=0, errors=0)
exit status 1
Is this expected or is something going on here?