Feature tests - thuy-econsys/rails_app GitHub Wiki
Use System instead of Feature Specs
RSpec team is transitioning Feature specs to System specs. Based on the release of RSpec 3.7:
As such, we are recommending that users on Rails 5.1 prefer writing system specs over feature specs for full application integration testing.
- README - Feature specs | rspec/rspec-rails GitHub
- RSpec 3.7 has been released! - Rails: ActionDispatch::SystemTest integration (System specs) | RSpec Blog
- A Quick Guide to Rails System Tests in RSpec | Table XI
- The difference between system specs and feature specs | Code with Jason