diff --git a/CHANGELOG.md b/CHANGELOG.md index bea74ab..4c68fab 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## [] +[Compare]: https://github.com/shakacode/cypress-on-rails/compare/v1.13.0...master + +### Fixed +* use_vcr_middleware disabled by default [PR 109](https://github.com/shakacode/cypress-on-rails/pull/109) + ## [1.13.0] [Compare]: https://github.com/shakacode/cypress-on-rails/compare/v1.12.1...v1.13.0 diff --git a/lib/cypress_on_rails/configuration.rb b/lib/cypress_on_rails/configuration.rb index 28a0ca1..21a5462 100644 --- a/lib/cypress_on_rails/configuration.rb +++ b/lib/cypress_on_rails/configuration.rb @@ -17,7 +17,7 @@ def initialize def reset self.cypress_folder = 'spec/cypress' self.use_middleware = true - self.use_vcr_middleware = true + self.use_vcr_middleware = false self.logger = Logger.new(STDOUT) end