簡體   English   中英

Javascript未在Rails測試環境中加載

[英]Javascript not loading in Rails Test Environment

我無法在Rails測試環境中將Javascript加載到瀏覽器中。 這對於通過水豚進行黃瓜硒測試是有問題的。 這是我的test.rb (據我所知是默認值)

MyApp::Application.configure do
  # Settings specified here will take precedence over those in config/application.rb

  # The test environment is used exclusively to run your application's
  # test suite. You never need to work with it otherwise. Remember that
  # your test database is "scratch space" for the test suite and is wiped
  # and recreated between test runs. Don't rely on the data there!
  config.cache_classes = true

  # Configure static asset server for tests with Cache-Control for performance
  config.serve_static_assets = true
  config.static_cache_control = "public, max-age=3600"

  # Log error messages when you accidentally call methods on nil
  config.whiny_nils = true

  # Show full error reports and disable caching
  config.consider_all_requests_local       = true
  config.action_controller.perform_caching = false

  # Raise exceptions instead of rendering exception templates
  config.action_dispatch.show_exceptions = false

  # Disable request forgery protection in test environment
  config.action_controller.allow_forgery_protection    = false

  # Tell Action Mailer not to deliver emails to the real world.
  # The :test delivery method accumulates sent emails in the
  # ActionMailer::Base.deliveries array.
  config.action_mailer.delivery_method = :test

  # Raise exception on mass assignment protection for Active Record models
  config.active_record.mass_assignment_sanitizer = :strict

  # Print deprecation notices to the stderr
  config.active_support.deprecation = :stderr
end

這將導致所有內容都統一化為application.js。 我嘗試添加config.assets.debug = true ,以使資產不被合並,然后僅有加載javascript。 如果我復制development.rb它似乎可以工作,但這似乎並不理想。

謝謝!

事實證明,由於相互依賴關系, less-rails-bootstrap版本3.0.1 gem以錯誤的順序加載了twitter / bootstrap。 我們從來沒有注意到這是在開發中,因為默認情況下Rails不會在開發環境中壓縮資產。 因此,這些特定文件沒有被加載,但是它們並沒有像測試中那樣阻止我們所有的javascript加載。

升級到less-rails-bootstrap 3.0.3,或在application.js中按正確的順序要求twitter / bootstrap的各個組件都可以解決此問題。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM