cucumber, rspec and rails 3 raises error option: --profile

后端 未结 2 383
生来不讨喜
生来不讨喜 2021-01-22 19:51

I used cucumber for the first time with rails 3.

Gemfile

group :test do
 gem \"rspec\"
 gem \"rspec-rails\"
 gem \"database_cleaner\"
 gem \"spork\"
 gem         


        
2条回答
  •  闹比i
    闹比i (楼主)
    2021-01-22 20:06

    Try with putting this file features/support/minitest_disable.rb the following code:

    require 'multi_test'
    MultiTest.disable_autorun
    

    and see this discussion in cucumber project

提交回复
热议问题