UNPKG

pgsql-test

Version:

pgsql-test offers isolated, role-aware, and rollback-friendly PostgreSQL environments for integration tests — giving developers realistic test coverage without external state pollution

14 lines (13 loc) 343 B
import { compose, fn, sqlfile } from './adapters'; import { csv } from './csv'; import { json } from './json'; import { pgpm } from './pgpm'; export * from './types'; export declare const seed: { pgpm: typeof pgpm; json: typeof json; csv: typeof csv; compose: typeof compose; fn: typeof fn; sqlfile: typeof sqlfile; };