UNPKG

supertest-graphql

Version:

Extends supertest to test a GraphQL endpoint

6 lines (5 loc) 230 B
import { ExecutionResult } from "graphql"; export declare type Variables = { [key: string]: unknown; }; export declare type AssertFn<TData> = (result: ExecutionResult<TData>) => Error | undefined | Promise<Error | undefined>;