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) 336 B
import { compose, fn, sqlfile } from './adapters'; import { csv } from './csv'; import { json } from './json'; import { launchql } from './launchql'; import { sqitch } from './sqitch'; export * from './csv'; export * from './types'; export const seed = { launchql, sqitch, json, csv, compose, fn, sqlfile };