jstuyts / kotlin-multiplatform-recipes

Recipes for building multi-platform Kotlin modules.
MIT License
77 stars 5 forks source link

Test dependencies delegation #9

Closed tarik02 closed 7 years ago

tarik02 commented 7 years ago

For example I have a project with modules:

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.

tarik02 commented 7 years ago

... 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'))

jstuyts commented 7 years ago

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.

jstuyts commented 7 years ago

I created #10.

tarik02 commented 7 years ago

Thank you