if
// any
prisma.some.findMany() // all ok
if
// any
const some = await axios.get('https://some.com/some') // or nestjs/axios or node-fetch
console.log(some)
// ...
console.log('before')
prisma.some.findMany()
console.log('after')
logs in test:
{/*some*/}
before
Process finished with exit code -1073741819 (0xC0000005)
I use:
- windows 10
- "prisma": "4.8.0",
- "@prisma/client": "4.8.0",
- "@nestjs/core": "9.0.0",
- "@nestjs/axios": "1.0.1",
- "axios": "^1.3.3",
- "node-fetch": "2",
- "typescript": "4.7.4"