aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorGravatar Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> 2023-07-17 23:17:06 -0700
committerGravatar Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> 2023-07-17 23:17:06 -0700
commit71f1aa1802360d74d823b1a1544454b199b27898 (patch)
tree24d2a34b183beeb3a7de443945695687eae83c05 /test
parenteaff66b098074a32d3d145eb1e56a3bdfaea37b3 (diff)
downloadbun-71f1aa1802360d74d823b1a1544454b199b27898.tar.gz
bun-71f1aa1802360d74d823b1a1544454b199b27898.tar.zst
bun-71f1aa1802360d74d823b1a1544454b199b27898.zip
Enable postgres prisma test
Diffstat (limited to 'test')
-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 {