mirror of
https://github.com/shishantbiswas/bknd.git
synced 2026-03-15 20:17:22 +00:00
17 lines
404 B
TypeScript
17 lines
404 B
TypeScript
import { describe } from "bun:test";
|
|
import { postgresJs } from "../src/PostgresJsConnection";
|
|
import { testSuite } from "./suite";
|
|
|
|
describe("postgresjs", () => {
|
|
testSuite({
|
|
createConnection: () =>
|
|
postgresJs({
|
|
host: "localhost",
|
|
port: 5430,
|
|
user: "postgres",
|
|
password: "postgres",
|
|
database: "bknd",
|
|
}),
|
|
});
|
|
});
|