In the tutorial video, I can see that when he created a new project NX also create a sibling repo for e2e test cases.
https://nx.dev/react-tutorial/01-create-application
My question is that I got a monorepo which I already created, which have a structure like this. front end was created with npx-create-react-app ...
MyApp
- FrontEndRepo
- BackEndRepo
According to NX convention Why does nrwl nx create a separate e2e project for each app?
If I start creating my project with it should be something like this.
MyApp
- FrontEndRepo
- FrontEndRepo-e2e
- BackEndRepo
- BackEndRepo-e2e
So how can I add those e2e test folders to existing repo?