mirror of
https://github.com/twbs/bootstrap-sass.git
synced 2022-11-09 12:27:02 -05:00
14 lines
242 B
Ruby
14 lines
242 B
Ruby
![]() |
require 'test_helper'
|
||
|
|
||
|
class PagesTest < ActionDispatch::IntegrationTest
|
||
|
include ::IntegrationTest
|
||
|
|
||
|
def test_visit_root
|
||
|
visit root_path
|
||
|
# ^ will raise on JS errors
|
||
|
|
||
|
assert_equal page.status_code, 200
|
||
|
|
||
|
screenshot!
|
||
|
end
|
||
|
end
|