Closed tarik02 closed 7 years ago
For example I have a project with modules:
expectedBy project(':common')
compile project(':util')
Then I want to add tests to util module, but the tests don't appear when i run :js:test. So i want to delegate tests. Thanks.
:js:test
... and there are issue that I can't use anything from module util in module js(and jvm) even if it is in dependencies of common and js(compile project(':util'))
util
js
jvm
common
I don't know how this is supposed to work. I think it is better if you ask on the forum or in channel #multiplatform on Slack.
It is a good use case though, and I will create a separate issue for it later.
I created #10.
Thank you
For example I have a project with modules:
expectedBy project(':common')
expectedBy project(':common')
compile project(':util')
Then I want to add tests to util module, but the tests don't appear when i run
:js:test
. So i want to delegate tests. Thanks.