Skip to content

Commit 92d41d8

Browse files
committed
fix in execute as well
1 parent d9c4bd3 commit 92d41d8

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/execution/__tests__/executor-test.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ import { GraphQLBoolean, GraphQLInt, GraphQLString } from '../../type/scalars';
2222
import { GraphQLSchema } from '../../type/schema';
2323

2424
import { execute, executeSync } from '../execute';
25-
import { print } from '../../language';
2625

2726
describe('Execute: Handles basic execution tasks', () => {
2827
it('throws if no document is provided', () => {
@@ -81,7 +80,6 @@ describe('Execute: Handles basic execution tasks', () => {
8180
}),
8281
});
8382

84-
8583
const n = 10000;
8684
const fragments = Array.from(Array(n).keys()).reduce(
8785
(acc, next) =>
@@ -96,7 +94,6 @@ describe('Execute: Handles basic execution tasks', () => {
9694
const document = parse(`
9795
query {
9896
...X${n}
99-
__typename
10097
}
10198
${fragments}
10299
fragment X0 on Query {

0 commit comments

Comments
 (0)