Sha256: 5b6c8100b0dcc1abad613ec8aaa63bf67db527e9471d4fc08fbf5fa6bde0cc93

Contents?: true

Size: 427 Bytes

Versions: 1

Compression:

Stored size: 427 Bytes

Contents

require 'test_helper_rails'

class RailsTest < ActionDispatch::IntegrationTest
  include ::DummyRailsIntegration

  def test_visit_root
    visit root_path
    # ^ will raise on JS errors

    assert_equal 200, page.status_code

    screenshot!
  end

  def test_autoprefixer
    get ActionController::Base.helpers.stylesheet_path('application.css')
    assert_match /-webkit-(?:transition|transform)/, response.body
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
bootstrap-4.0.0.alpha1 test/rails_test.rb