现在我配置了 rspec,以便单独运行rspec
命令排除任何需要加载 Rails 环境的测试:
RSpec.configure do |config|
config.filter_run_excluding :type => 'feature'
end
排除的测试如下所示:
describe 'Feature that requires rails', :type => :feature do
# test, test, test
end
该命令将专门rspec -t type:feature
运行这些测试。
使用这种配置,有没有办法在一个命令中运行所有测试,包括功能测试?