blueberryapps / vcr.js

Mock server with Proxy and Record support inspired by ruby VCR.
MIT License
41 stars 7 forks source link

Don't discard query parameters from proxied requests #13

Closed matejlauko closed 6 years ago

matejlauko commented 7 years ago

When vcr proxies requests, it discards all query parameters from request url. It should leave them there to correctly access API.

For example: request GET /labels?size=1000 is proxied only as GET /labels

Then also the saved fixtures from record mode should be named with parameters to be able to distinguish between them.. Maybe GET{size:1000}.default.json ?

matejlauko commented 6 years ago

Was fixed in 0.6.0..