Created
July 2, 2019 03:32
-
-
Save danielwestendorf/812d420951b0c329de467f40d87afdd9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# spec/rails_helper.rb | |
RSpec.configure do |config| | |
... | |
config.include TurbolinkNav, type: :system | |
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# spec/system/thing_spec.rb | |
RSpec.describe "test of thing", type: :system do | |
it "does a turbolink nav" do | |
visit root_path | |
turbolinks_nav do | |
click_on "TurboLink" | |
end | |
expect(page).to have_content("new content or whatever") | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment