Hey, I have a monorepo of 2 apps. Most of the code...
# test
u
Hey, I have a monorepo of 2 apps. Most of the code is shared via core libraries, but the apps are not identical. I'd like to do big end-to-end tests with real Dagger graph. Let's say to test logging in. Login routine lives in a core library and is unit tested there, however there is value of running it with real okhttp client, real database, threading etc. But the final Dagger graph is only constructed at app level. So I copy paste the same test to both apps, works but isn't amazing for future Whats the best way to share tests + take the dagger graph as a parameter? Is there something commonplace, other than creating own abstraction?