rspec测试总是使用terminal-notifier-guard显示失败

时间:2014-01-03 02:31:38

标签: rspec guard

虽然我的所有规格都显示为在我的终端中传递,但通知总是显示它们失败了。它是一个非常简单的设置,但我有错误配置的东西吗?我该怎么解决这个问题?

的Gemfile

group :development do
  gem 'guard'
  gem 'guard-rspec'
  gem 'rspec'
  gem 'terminal-notifier-guard'
end

Guardfile

notification :terminal_notifier
guard :rspec, all_after_pass: true, all_on_start: true do
  # ...
end

1 个答案:

答案 0 :(得分:2)

问题是guard未配置为使用bundle exec

运行rspec
guard :rspec, cmd: 'bundle exec rspec' do
  ...
end