(message: string)
| 586 | const result = executeSync({ schema, document, rootValue }); |
| 587 | return { |
| 588 | toEqual(message: string) { |
| 589 | expectJSON(result).toDeepEqual({ |
| 590 | data: { pet: null }, |
| 591 | errors: [ |
| 592 | { |
| 593 | message, |
| 594 | locations: [{ line: 3, column: 9 }], |
| 595 | path: ['pet'], |
| 596 | }, |
| 597 | ], |
| 598 | }); |
| 599 | }, |
| 600 | }; |
| 601 | } |
| 602 |
nothing calls this directly
no test coverage detected
searching dependent graphs…