(_request, next)
| 16 | |
| 17 | var expectedError = new Error('Bad dog!'); |
| 18 | function passError(_request, next) { |
| 19 | return next(expectedError); |
| 20 | } |
| 21 | function getErrorTest(done) { |
| 22 | return function(err) { |
| 23 | expect(err).to.eql(expectedError); |
nothing calls this directly
no test coverage detected
searching dependent graphs…