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

9 lines (8 loc) 215 B
import { deployPgpm } from 'pgsql-seed'; export function pgpm(cwd, cache = false) { return { async seed(ctx) { await deployPgpm(ctx.config, cwd ?? ctx.connect.cwd, cache); } }; }