diff --git a/src/__tests__/http-test.js b/src/__tests__/http-test.js index 0adc479e..1c280be9 100644 --- a/src/__tests__/http-test.js +++ b/src/__tests__/http-test.js @@ -939,7 +939,8 @@ describe('test harness', () => { data: { thrower: null }, errors: [ { message: 'Throws!', - locations: [ { line: 1, column: 2 } ] + locations: [ { line: 1, column: 2 } ], + path: [ 'thrower' ] } ] }); }); @@ -961,7 +962,8 @@ describe('test harness', () => { data: null, errors: [ { message: 'Throws!', - locations: [ { line: 1, column: 2 } ] + locations: [ { line: 1, column: 2 } ], + path: [ 'nonNullThrower' ] } ] }); });