We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9905d18 commit cab6cefCopy full SHA for cab6cef
__tests__/integration.js
@@ -384,7 +384,11 @@ describe('integration tests', () => {
384
})
385
386
387
- test('forwardConnectionErrorResponseToApiGateway', (done) => {
+ // [TODO] The behavior of Node in versions >10 has changed an the error is no longer thrown
388
+ // in this case to trigger the 502 response. The unit tests still check the correct
389
+ // structure of the 502 response and we'll need to find a new way to test an express
390
+ // failure
391
+ test.skip('forwardConnectionErrorResponseToApiGateway', (done) => {
392
const succeed = response => {
393
delete response.headers.date
394
expect(response).toEqual({
0 commit comments