Jgafner
07/26/2021, 8:57 AMtasks.register("uiTestCore", Test) {
it.group("verification")
// we don't want to cache the results of this.
it.outputs.upToDateWhen { false }
it.systemProperty("robot-server.port", remoteRobotPort)
}
It is failing on the systemProperties and I can’t find an example
tasks.register<Test>("uiTestCore") {
group = "verification" // we don't want to cache the results of this.
outputs.upToDateWhen { false }
systemProperties("robot-server.port", remoteRobotPort)
}
any idea?Vampire
07/26/2021, 9:08 AM- systemProperties("robot-server.port", remoteRobotPort)
+ systemProperty("robot-server.port", remoteRobotPort)
Jgafner
07/26/2021, 9:10 AM