@graphql-codegen/testing
Version:
GraphQL Codegen Testing Utils
14 lines (13 loc) • 376 B
text/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.cjs';
export * from './resolvers-common.cjs';
export * from './typescript.cjs';