import { describe, it, expectTypeOf } from 'vitest'; import type * as graphql from 'graphql16'; import type { parse, parseValue } from '../parser'; describe('parse', () => { it('should match graphql.js’ parse', () => { expectTypeOf().toMatchTypeOf(); expectTypeOf().toMatchTypeOf(); }); }); describe('parseValue', () => { it('should match graphql.js’ parseValue', () => { expectTypeOf().toMatchTypeOf(); expectTypeOf().toMatchTypeOf(); }); });