From b55b57531cd2b4d4f3f9518b5704f5ab299bc15e Mon Sep 17 00:00:00 2001 From: Christoph Zwerschke Date: Sat, 8 Feb 2020 14:27:41 +0100 Subject: [PATCH] TypeInfo-test: use proper test name (#2444) --- src/utilities/__tests__/TypeInfo-test.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/utilities/__tests__/TypeInfo-test.js b/src/utilities/__tests__/TypeInfo-test.js index bf7d5a853c..53da7e747b 100644 --- a/src/utilities/__tests__/TypeInfo-test.js +++ b/src/utilities/__tests__/TypeInfo-test.js @@ -309,7 +309,7 @@ describe('visitWithTypeInfo', () => { ]); }); - it('support traversals of input values', () => { + it('supports traversals of input values', () => { const ast = parseValue('{ stringListField: ["foo"] }'); const complexInputType = testSchema.getType('ComplexInput'); invariant(complexInputType != null); @@ -355,7 +355,7 @@ describe('visitWithTypeInfo', () => { ]); }); - it('support traversals of input values', () => { + it('supports traversals of selection sets', () => { const humanType = testSchema.getType('Human'); invariant(humanType != null);