Skip to content

Commit

Permalink
config sets use_vcr_middleware to false by default (#109)
Browse files Browse the repository at this point in the history
  • Loading branch information
grantspeelman authored Jun 8, 2022
1 parent 45a455b commit 86b988d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down
2 changes: 1 addition & 1 deletion lib/cypress_on_rails/configuration.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 86b988d

Please sign in to comment.