Skip to content

Commit

Permalink
fix in execute as well
Browse files Browse the repository at this point in the history
  • Loading branch information
JoviDeCroock committed Jun 19, 2024
1 parent d9c4bd3 commit 92d41d8
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/execution/__tests__/executor-test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ import { GraphQLBoolean, GraphQLInt, GraphQLString } from '../../type/scalars';
import { GraphQLSchema } from '../../type/schema';

import { execute, executeSync } from '../execute';
import { print } from '../../language';

describe('Execute: Handles basic execution tasks', () => {
it('throws if no document is provided', () => {
Expand Down Expand Up @@ -81,7 +80,6 @@ describe('Execute: Handles basic execution tasks', () => {
}),
});


const n = 10000;
const fragments = Array.from(Array(n).keys()).reduce(
(acc, next) =>
Expand All @@ -96,7 +94,6 @@ describe('Execute: Handles basic execution tasks', () => {
const document = parse(`
query {
...X${n}
__typename
}
${fragments}
fragment X0 on Query {
Expand Down

0 comments on commit 92d41d8

Please sign in to comment.