I'm failing to start unit tests from a command line on Mac OS.
java -classpath ~/Library/Application\ Support/Garmin/ConnectIQ/Sdks/connectiq-sdk/bin/monkeybrains.jar com.garmin.monkeybrains.monkeydodeux.MonkeyDoDeux -f bin/late.prg -d fenix6 -s ~/Library/Application\ Support/Garmin/ConnectIQ/Sdks/connectiq-sdk/bin/shell -t
Prints:
Error: Symbol Not Found Error
Details: Failed invoking <symbol>
Stack:
Encountered an app crash.
And more specific:
java -classpath ~/Library/Application\ Support/Garmin/ConnectIQ/Sdks/connectiq-sdk/bin/monkeybrains.jar com.garmin.monkeybrains.monkeydodeux.MonkeyDoDeux -f bin/late.prg -d fenix6 -s ~/Library/Application\ Support/Garmin/ConnectIQ/Sdks/connectiq-sdk/bin/shell -t test
Error: Symbol Not Found Error
Details: Failed invoking <symbol>
Stack:
------------------------------------------------------------------------------
Executing test test...
ERROR
Encountered an app crash.
The paths are valid, tests/ folder with tests.mc included in monkey.jungle with one test:
(:test)
function test(logger){
return true;
}
prg was compiled with --unit-test
What could be wrong?
Thanks for guidance. I need to do it from a command line to automate it.