Skip to content

Commit 86b988d

Browse files
config sets use_vcr_middleware to false by default (#109)
1 parent 45a455b commit 86b988d

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## []
2+
[Compare]: https://github.com/shakacode/cypress-on-rails/compare/v1.13.0...master
3+
4+
### Fixed
5+
* use_vcr_middleware disabled by default [PR 109](https://github.com/shakacode/cypress-on-rails/pull/109)
6+
17
## [1.13.0]
28
[Compare]: https://github.com/shakacode/cypress-on-rails/compare/v1.12.1...v1.13.0
39

lib/cypress_on_rails/configuration.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ def initialize
1717
def reset
1818
self.cypress_folder = 'spec/cypress'
1919
self.use_middleware = true
20-
self.use_vcr_middleware = true
20+
self.use_vcr_middleware = false
2121
self.logger = Logger.new(STDOUT)
2222
end
2323

0 commit comments

Comments
 (0)