On an umbrella app with the following children apps:
web service(phoenix)
external requests service
...
Web service is managing the incoming requests and time to time uses the ExternalService commands/functions to do 3rd party calls. Using ExVCR I'm having automatic and custom cassettes for specific 3rd party requests, like:
translations (200)
api_401 (custom)
api_500 (custom)
Having the test cases in the same order as above, all of the non-200 tests are failing because VCR continues using the 200 cassette and doesn't eject it and us the custom cassettes.
On an umbrella app with the following children apps:
Web service is managing the incoming requests and time to time uses the ExternalService commands/functions to do 3rd party calls. Using ExVCR I'm having automatic and custom cassettes for specific 3rd party requests, like:
Having the test cases in the same order as above, all of the non-200 tests are failing because VCR continues using the 200 cassette and doesn't eject it and us the custom cassettes.