jest-prisma icon indicating copy to clipboard operation
jest-prisma copied to clipboard

Jest environment for integrated testing with Prisma client

Results 22 jest-prisma issues
Sort by recently updated
recently updated
newest added

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [@prisma/client](https://www.prisma.io) ([source](https://togithub.com/prisma/prisma/tree/HEAD/packages/client)) | [`5.12.1` -> `5.14.0`](https://renovatebot.com/diffs/npm/@prisma%2fclient/5.12.1/5.14.0) |...

This issue lists Renovate updates and detected dependencies. Read the [Dependency Dashboard](https://docs.renovatebot.com/key-concepts/dashboard/) docs to learn more. ## Open These updates have all been created already. Click a checkbox below to...

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [rimraf](https://togithub.com/isaacs/rimraf) | [`5.0.5` -> `5.0.7`](https://renovatebot.com/diffs/npm/rimraf/5.0.5/5.0.7) | [![age](https://developer.mend.io/api/mc/badges/age/npm/rimraf/5.0.7?slim=true)](https://docs.renovatebot.com/merge-confidence/)...

This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [actions/checkout](https://togithub.com/actions/checkout) | action | digest | `1d96c77` -> `692973e` | --- ### Configuration...

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [typescript](https://www.typescriptlang.org/) ([source](https://togithub.com/Microsoft/TypeScript)) | [`5.4.4` -> `5.5.4`](https://renovatebot.com/diffs/npm/typescript/5.4.4/5.5.4) |...

After upgrading `prisma` and `prisma-client` to `5.10.2` and upgrade `jest-prisma` to `1.8.0` I have been getting `PrismaClient is unable to run in this browser environment, or has been bundled for...

``` function getUsers(ids: number[], filter?: string) { const filterStatement = `%${filter}%` return $queryRaw`SELECT * FROM users WHERE id IN (${Prisma.join([ids])}) ${filter ? Prisma.sql`OR email LIKE ${filterStatement}` : Prisma.empty}` } ```...

help wanted

The following error may occur if `@prisma/client` runs in jsdom env: ``` PrismaClient is unable to run in this browser environment, or has been bundled for the browser (running in...

enhancement

Thank you for the great library. When I tried to add a following test into the `examples/example-prj/src/service`, I found a suspicious behavior. ```typescript import { Prisma, PrismaClient } from "@prisma/client";...

help wanted

### Description I tried to set up the jest-prisma environment with a Blitz.js app, [following the documentation](https://github.com/Quramy/jest-prisma#jest-prisma), but encountered an issue where jestPrisma is not defined in the test environment....