How can you share test util code between multiplat...
# multiplatform
s
How can you share test util code between multiplatform modules? Should I put it in main sourceset?
👌 2
b
put it in commonTest
t
if you put it in commonTest is will not be shared amongst modules. best practise IMHO is to make a separate module just for the test utils and put it in the main sourceset there.
👍 1