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

17 lines (16 loc) 444 B
import { fn, sqlfile, compose } from './adapters'; import { csv } from './csv'; import { json } from './json'; import { sqitch } from './sqitch'; import { launchql } from './launchql'; export * from './types'; export * from './csv'; export declare const seed: { launchql: typeof launchql; sqitch: typeof sqitch; json: typeof json; csv: typeof csv; compose: typeof compose; fn: typeof fn; sqlfile: typeof sqlfile; };