mirror of
https://github.com/shishantbiswas/bknd.git
synced 2026-03-16 04:27:21 +00:00
17 lines
380 B
TypeScript
17 lines
380 B
TypeScript
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",
|
|
}),
|
|
});
|
|
});
|