mirror of
https://github.com/bknd-io/bknd/
synced 2026-08-03 08:36:01 +00:00
postgres: added pg and postgres, and examples for xata and neon
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
import { describe } from "bun:test";
|
||||
import { pg } from "../src/PgPostgresConnection";
|
||||
import { testSuite } from "./suite";
|
||||
|
||||
describe("pg", () => {
|
||||
testSuite({
|
||||
createConnection: () =>
|
||||
pg({
|
||||
host: "localhost",
|
||||
port: 5430,
|
||||
user: "postgres",
|
||||
password: "postgres",
|
||||
database: "bknd",
|
||||
}),
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user