From be4e0d67400c5c5d2ebc1859e4274764b53e8590 Mon Sep 17 00:00:00 2001 From: Caleb Meredith Date: Fri, 7 Oct 2016 09:30:30 -0400 Subject: [PATCH] fix(tests): fix missing property in enum type test --- tests/graphql/getType.test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/graphql/getType.test.js b/tests/graphql/getType.test.js index 8358e6100e..1161278e14 100644 --- a/tests/graphql/getType.test.js +++ b/tests/graphql/getType.test.js @@ -85,7 +85,7 @@ describe('getType', () => { { name: 'PURPLE', value: 'purple' }, { name: 'TOMATO', value: 'tomato' }, { name: 'HELLO_WORLD', value: 'hello_world' }, - ].map(variant => assign(variant, { description: noop(), deprecationReason: noop() }))) + ].map(variant => assign(variant, { description: noop(), deprecationReason: noop(), isDeprecated: false }))) }) })