When making e2e tests, you probably want to mock your call to prisma, but it might be complicated with NestJS module to find a way of doing it properly
For people looking for a proper exemple here is a way of doing it using jest-mock-extended
This exemple use Prisma as a module
You need to setup jest.config.*
and prepare a file for prisma mock
jest.config.ts
prisma-mock.ts (also work with custom client)
user.e2e.specs.ts
With this you have a base to create e2e tests for every modules in your nestJs project
If you have any questions about it or some possible optimisation, please feel free to leave a comment