Skip to content

Commit

Permalink
Remove spurious console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
mcollina committed Jul 14, 2020
1 parent da3b88c commit c38694f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/batched.js
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ test('POST batched query with a resolver which succeeds and a resolver which thr

const resolvers = {
add: async ({ x, y }) => x + y,
bad: () => { console.log('RUNNING'); throw new Error('Bad Resolver') }
bad: () => { throw new Error('Bad Resolver') }
}

app.register(GQL, {
Expand Down

0 comments on commit c38694f

Please sign in to comment.