In my tests, I have a function to reset my prisma ...
# orm-help
j
In my tests, I have a function to reset my prisma tables. It basically looks like this, but with 20 or more calls:
Copy code
async function reset() {
  awais table1.deleteMany({})
  awais table2.deleteMany({})
}
r
@Jonas 👋 Not quite sure, would need to test it with sample data in this case.
Is there a lot of data in each of your tables?
j
No in this case there isn't
Most are empty durin these tests
r
Strange. Could you open an issue here with the reproduction steps and time difference so that we can look into this?
j
Might be a bit hard to repoduce sadly. Was more looking for pointers to go investigate myself 😅