assaf / node-replay

When API testing slows you down: record and replay HTTP responses like a boss
http://documentup.com/assaf/node-replay
MIT License
522 stars 107 forks source link

jsdom XMLHttpRequest reports no headers #119

Open justincy opened 8 years ago

justincy commented 8 years ago

jsdom expects rawHeaders to be available. They are being generated internally but just not passed on. This can be fixed by adding rawHeaders: response.rawHeaders || [] to this block of code: https://github.com/assaf/node-replay/blob/f3c32141967d3a7fe090765167cde6c3244f7def/src/matcher.js#L51-L58