UNPKG

255 BPlain TextView Raw
1require 'test_helper_rails'
2
3class PagesTest < ActionDispatch::IntegrationTest
4 include ::DummyRailsIntegration
5
6 def test_visit_root
7 visit root_path
8 # ^ will raise on JS errors
9
10 assert_equal 200, page.status_code
11
12 screenshot!
13 end
14end