虽然我的所有规格都显示为在我的终端中传递,但通知总是显示它们失败了。它是一个非常简单的设置,但我有错误配置的东西吗?我该怎么解决这个问题?
的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
答案 0 :(得分:2)
问题是guard未配置为使用bundle exec
guard :rspec, cmd: 'bundle exec rspec' do
...
end