Hi everyone, we’re in the process of migrating a Prisma1 codebase to Prisma2 (Postgre). Are there any best practices or recommendations to run integrations tests against a real db ?
r
Ryan
11/25/2020, 2:18 PM
@providenz 👋
We have an example of running integration tests against a DB here and here. The second one creates a server for each test suite and a Postgres DB.
p
providenz
11/25/2020, 2:22 PM
Thank you very much, I had already found the second, but the first one will be be very helpful ❤️