diff options
author | 2023-07-17 23:17:06 -0700 | |
---|---|---|
committer | 2023-07-17 23:17:06 -0700 | |
commit | 71f1aa1802360d74d823b1a1544454b199b27898 (patch) | |
tree | 24d2a34b183beeb3a7de443945695687eae83c05 /test | |
parent | eaff66b098074a32d3d145eb1e56a3bdfaea37b3 (diff) | |
download | bun-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.ts | 2 |
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 { |