Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test: update Postgres.js tests #491

Merged
merged 11 commits into from
Nov 21, 2024
Prev Previous commit
test: fix typo in test name
  • Loading branch information
hauleth committed Nov 21, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
commit 0a083c95eb27e3b715ce61449cb571ae20776cea
2 changes: 1 addition & 1 deletion test/integration/js/postgres/index.js
Original file line number Diff line number Diff line change
@@ -2399,7 +2399,7 @@ t('Ensure reconnect after max_lifetime with transactions', { timeout: t.timeout
})


t('Ensure transactions throw if connection is closed dwhile there is no query', async() => {
t('Ensure transactions throw if connection is closed while there is no query', async() => {
const sql = postgres(options)
const x = await sql.begin(async() => {
setTimeout(() => sql.end({ timeout: 0 }), 10)
Loading