aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/js/third_party/prisma/prisma.test.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/js/third_party/prisma/prisma.test.ts b/test/js/third_party/prisma/prisma.test.ts
index 2c87a9fcb..a3d270857 100644
--- a/test/js/third_party/prisma/prisma.test.ts
+++ b/test/js/third_party/prisma/prisma.test.ts
@@ -10,7 +10,7 @@ function* TestIDGenerator() {
}
const test_id = TestIDGenerator();
-["sqlite" /*"postgres", "mongodb"*/].forEach(async type => {
+["sqlite", "postgres" /*"mongodb"*/].forEach(async type => {
let Client: typeof PrismaClient;
try {