From 40cf7ce0df217a8be1f5bd01dd5f834bd9a2f944 Mon Sep 17 00:00:00 2001 From: Manos Kouvarakis Date: Mon, 4 Mar 2024 15:14:09 +0200 Subject: [PATCH] Fix test --- test/initializers/postgres.test.ts | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/test/initializers/postgres.test.ts b/test/initializers/postgres.test.ts index 14118fd7..ed5fe6b1 100644 --- a/test/initializers/postgres.test.ts +++ b/test/initializers/postgres.test.ts @@ -52,7 +52,9 @@ describe('Test postgres connection', function () { max: undefined, ssl: { rejectUnauthorized: false }, idleTimeoutMillis: undefined, - connectionTimeoutMillis: undefined + connectionTimeoutMillis: undefined, + statement_timeout: undefined, + query_timeout: undefined, } ] ]); @@ -117,7 +119,9 @@ describe('Test postgres connection', function () { key: 'key' }, idleTimeoutMillis: 10000, - connectionTimeoutMillis: 0 + connectionTimeoutMillis: 0, + statement_timeout: undefined, + query_timeout: undefined, } ] ]);