(req, res, next)
| 599 | describe('Context', () => { |
| 600 | it('should support dependency injection on graphql api', async () => { |
| 601 | const requestContextMiddleware = (req, res, next) => { |
| 602 | req.config.aCustomController = 'aCustomController'; |
| 603 | next(); |
| 604 | }; |
| 605 | |
| 606 | let called; |
| 607 | const parseServer = await reconfigureServer({ requestContextMiddleware }); |
nothing calls this directly
no test coverage detected
searching dependent graphs…