From 5cd76820ba3186d4efcb802443ab0bd9d5dd7b53 Mon Sep 17 00:00:00 2001 From: "Visal .In" Date: Thu, 21 Nov 2024 14:20:38 +0700 Subject: [PATCH] exclude the mongodb form testing the placeholder --- tests/connections/connection.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/connections/connection.test.ts b/tests/connections/connection.test.ts index 387e067..421d50a 100644 --- a/tests/connections/connection.test.ts +++ b/tests/connections/connection.test.ts @@ -37,7 +37,7 @@ function cleanup(data: Record[]) { describe('Database Connection', () => { test('Support named parameters', async () => { - if (process.env.CONNECTION_TYPE === 'mongo') return; + if (process.env.CONNECTION_TYPE === 'mongodb') return; const sql = process.env.CONNECTION_TYPE === 'mysql'