egorand
06/20/2019, 7:00 PMbuild/reports/tests/allTests
after running check
and I can only see tests executed on jvm
and macosX64
louiscad
06/20/2019, 7:02 PMegorand
06/20/2019, 7:02 PMjsTest
was invoked but reported NO SOURCE
Jurriaan Mous
06/20/2019, 7:21 PMegorand
06/20/2019, 7:23 PMnativeTest {
dependsOn commonTest
}
snrostov
06/21/2019, 5:45 AMjsTest
is test report task which aggregates test results of jsBrowserTest
and jsNodeTest
which, in turn, can be configured by adding this lines:
js {
browser()
nodejs()
}
Without this lines jsTest
has no tests to aggregate, so it is reported as NO SOURCE
. Probably we should add some warning in this case. Will think about this.