Skip to content

Commit

Permalink
Fix import for prisma client
Browse files Browse the repository at this point in the history
  • Loading branch information
tnagorra committed Apr 15, 2024
1 parent f2cba70 commit 77d16be
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion tests/api/setup.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { afterEach, beforeEach, jest } from "@jest/globals";
import { Prisma, PrismaClient } from "@prisma/client";
import { Prisma } from "@prisma/client";
import { PrismaClient } from ".prisma/client";
import { spawnSync } from "child_process";
import { randomUUID } from "crypto";
import path from "path";
Expand Down
3 changes: 2 additions & 1 deletion tests/e2e/setup.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { afterEach, beforeEach, jest } from "@jest/globals";
import { Prisma, PrismaClient } from "@prisma/client";
import { Prisma } from "@prisma/client";
import { PrismaClient } from ".prisma/client";
import { spawnSync } from "child_process";
import path from "path";

Expand Down

0 comments on commit 77d16be

Please sign in to comment.