@graphql-codegen/testing
Version:
GraphQL Codegen Testing Utils
14 lines (13 loc) • 373 B
TypeScript
interface CustomMatchers<R = unknown> {
/**
* Normalizes whitespace and performs string comparisons
*/
toBeSimilarStringTo(expected: string): R;
}
declare module 'vitest' {
interface Matchers<T = any> extends CustomMatchers<T> {
}
}
export * from './mock-graphql-server.js';
export * from './resolvers-common.js';
export * from './typescript.js';