Skip to content

Commit 9b9929e

Browse files
authored
fix(benchmark): fix merge of original commit from v16 (#4421)
this broke benchmarking, not tests another reason to think about integrating benchmarking back into tests
1 parent c3045a3 commit 9b9929e

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

benchmark/fixtures.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,9 @@ export const bigSchemaSDL = fs.readFileSync(
55
'utf8',
66
);
77

8-
export const bigDocumentSDL = JSON.parse(
9-
fs.readFileSync(new URL('kitchen-sink.graphql', import.meta.url), 'utf8'),
8+
export const bigDocumentSDL = fs.readFileSync(
9+
new URL('kitchen-sink.graphql', import.meta.url),
10+
'utf8',
1011
);
1112

1213
export const bigSchemaIntrospectionResult = JSON.parse(

0 commit comments

Comments
 (0)