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) 178 B
import { insertJsonMap } from 'pgsql-seed'; export function json(data) { return { async seed(ctx) { await insertJsonMap(ctx.pg, data); } }; }