Moussa
09/26/2022, 11:33 AM.gradle/nodejs/node-v16.13.0-darwin-arm64/bin/node' exited with errors (exit code: 1)
Big Chungus
09/26/2022, 11:33 AMMoussa
09/26/2022, 11:35 AMBig Chungus
09/26/2022, 11:56 AMVampire
09/26/2022, 12:35 PM--info
and see if it is enough, normally it should be.
Only if not, I'd look at the overwhelming --debug
.
Or extract the actual node command that is executed (don't remember whether it is shown on debug or info) and run it manually to see the actual error standalone.Moussa
09/26/2022, 2:37 PMv1.7.10
, Gradle v7.4.2
and IntelliJ v2022.2.2
I’m running :`jsTest` which internally runs :jsBrowserTest
& :jsNodeTest
Gradle does setup everything before running and I do get unit test results, some success, some failures, some not running at all.
Then out of no, I get /Users/{my user name}/.gradle/nodejs/node-v16.13.0-darwin-arm64/bin/node' exited with errors (exit code: 1)
and Gradle reports build failed and end it.
After going through the whole thing, some of the unit test cases where taking more than 30000 ms which resulted in that error. After adding a custom annotation to ignore the unit test case in JS only. It works now with no issues