Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
manoskouvarakis committed Mar 4, 2024
1 parent fff7980 commit 40cf7ce
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions test/initializers/postgres.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
}
]
]);
Expand Down Expand Up @@ -117,7 +119,9 @@ describe('Test postgres connection', function () {
key: 'key'
},
idleTimeoutMillis: 10000,
connectionTimeoutMillis: 0
connectionTimeoutMillis: 0,
statement_timeout: undefined,
query_timeout: undefined,
}
]
]);
Expand Down

0 comments on commit 40cf7ce

Please sign in to comment.