@graphql-codegen/testing
Version:
GraphQL Codegen Testing Utils
10 lines (9 loc) • 345 B
TypeScript
import { GraphQLSchema } from 'graphql';
import nock from 'nock';
export declare function mockGraphQLServer({ schema, host, path, intercept, method, }: {
schema: GraphQLSchema;
host: string;
path: string | RegExp | ((path: string) => boolean);
intercept?: (obj: nock.ReplyFnContext) => void;
method?: string;
}): nock.Scope;