demonsters / prisma-mock

A mock library of Prisma intended for unit testing.
MIT License
115 stars 28 forks source link

Use `PrismaPromise` for better fidelity #13

Open leighman opened 1 year ago

leighman commented 1 year ago

https://github.com/prisma/prisma/blob/c70940dabff16ce46365a8442b1af841fcfc48d2/packages/client/src/runtime/core/request/createPrismaPromise.ts

Prisma promises do not execute until you call .then unlike regular promises. Would be good to use them if possible for better fidelity.

stijnvanderlaan commented 1 year ago

Good catch!