Skip to content

Commit

Permalink
fix(tests): fix missing property in enum type test
Browse files Browse the repository at this point in the history
  • Loading branch information
calebmer committed Oct 7, 2016
1 parent 7622877 commit be4e0d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/graphql/getType.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 })))
})
})

Expand Down

0 comments on commit be4e0d6

Please sign in to comment.