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