Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions graphql/test/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,11 @@ export { GraphQLTest } from './graphile-test';
export * from './get-connections';
export { seed, snapshot } from 'pgsql-test';

// Re-export low-level DB connection utilities for advanced two-phase patterns
// (e.g. provision first, then build GraphQL schema over dynamic tables).
export { getConnections as getDbConnections } from 'pgsql-test';
export type { GetConnectionResult, GetConnectionOpts } from 'pgsql-test';
export type { PgTestClient } from 'pgsql-test/test-client';

// Export GraphQL test adapter for SDK integration
export { GraphQLTestAdapter } from './adapter';
Loading