···1+---
2+'@0no-co/graphql.web': patch
3+---
4+5+Move over unit tests from `graphql-web-lite` and fix minor discrepancies to reference implementation.
+371-1
src/__tests__/parser.test.ts
···2import { readFileSync } from 'fs';
34import { parse as graphql_parse } from 'graphql';
5-import { parse } from '../parser';
067describe('print', () => {
8 it('prints the kitchen sink document like graphql.js does', () => {
···12 const doc = parse(sink);
13 expect(doc).toMatchSnapshot();
14 expect(doc).toEqual(graphql_parse(sink, { noLocation: true }));
00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000015 });
16});