When creating a new nx workspace (i.e. with create-nx-workspace) and then generating an app (with ng g app) it creates an app folder inside the apps folder (so far so good) and also another app-e2e folder, also inside the apps folder. In my mind it would make much more sense to create an e2e folder inside the app folder, next to the src folder, since the e2e tests should belong to that specific app and also it won't clutter the apps folder that way.
So what is the reasoning behind this convention?
Thanks a lot!