Mirror: The spec-compliant minimum of client-side GraphQL.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 14b1a0c1c4e11780b3438b8e2475721d0e764d00 11 lines 387 B view raw
1import { describe, it, expectTypeOf } from 'vitest'; 2import type * as graphql from 'graphql16'; 3 4import type { GraphQLError } from '../error'; 5 6describe('GraphQLError', () => { 7 it('should match graphql.js’ GraphQLError', () => { 8 expectTypeOf<GraphQLError>().toMatchTypeOf<graphql.GraphQLError>(); 9 expectTypeOf<graphql.GraphQLError>().toMatchTypeOf<GraphQLError>(); 10 }); 11});