Skip to content

Commit 39c2702

Browse files
committed
Remove unused import
1 parent ccebfbf commit 39c2702

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

tests/db-utils.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import fs from 'node:fs'
22
import { faker } from '@faker-js/faker'
3-
import { Prisma, type PrismaClient } from '@prisma/client'
3+
import { type PrismaClient } from '@prisma/client'
44
import bcrypt from 'bcryptjs'
55
import { UniqueEnforcer } from 'enforce-unique'
66

@@ -144,8 +144,6 @@ export async function cleanupDb(prisma: PrismaClient) {
144144
.map((statement) => statement.trim())
145145
.filter(Boolean)
146146

147-
//trigger
148-
149147
// Run each sql statement in the migration
150148
await prisma.$transaction([
151149
...statements.map((statement) =>

0 commit comments

Comments
 (0)