supabase-test
Version:
supabase-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
TypeScript
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 declare const seed: {
launchql: typeof launchql;
sqitch: typeof sqitch;
json: typeof json;
csv: typeof csv;
compose: typeof compose;
fn: typeof fn;
sqlfile: typeof sqlfile;
};