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 51114d6cf6fde70d989c2e456e30cf85c4cf0e3b 11 lines 368 B view raw
1import { describe, it, expectTypeOf } from 'vitest'; 2import type * as graphql from 'graphql16'; 3 4import type { visit } from '../visitor'; 5 6describe('visit', () => { 7 it('should match graphql.js’ visit', () => { 8 expectTypeOf<typeof visit>().toMatchTypeOf<typeof graphql.visit>(); 9 expectTypeOf<typeof graphql.visit>().toMatchTypeOf<typeof visit>(); 10 }); 11});