Skip to content

Commit f9327c3

Browse files
committed
More minor test fixes
1 parent dc4a2cc commit f9327c3

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

src/__tests__/starWarsIntrospection-test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,10 @@ describe('Star Wars Introspection Tests', () => {
4242
{ name: '__TypeKind' },
4343
{ name: '__Field' },
4444
{ name: '__InputValue' },
45+
{ name: '__TypeNullability' },
4546
{ name: '__EnumValue' },
4647
{ name: '__Directive' },
4748
{ name: '__DirectiveLocation' },
48-
{ name: '__TypeNullability' },
4949
],
5050
},
5151
});

src/execution/__tests__/executor-test.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -263,6 +263,7 @@ describe('Execute: Handles basic execution tasks', () => {
263263
'rootValue',
264264
'operation',
265265
'variableValues',
266+
'errorPropagation',
266267
);
267268

268269
const operation = document.definitions[0];
@@ -275,6 +276,7 @@ describe('Execute: Handles basic execution tasks', () => {
275276
schema,
276277
rootValue,
277278
operation,
279+
errorPropagation: true,
278280
});
279281

280282
const field = operation.selectionSet.selections[0];

0 commit comments

Comments
 (0)