🖥

Rspec で特定種類のテストだけを対象に before / after を設定する例

2024/11/11に公開

system test の全てのテストケースを対象に before(:each) の処理をさせる場合

rails_helper.rb に以下を設定

RSpec.configure do |config|
  config.before(:each, :type => lambda { |spec_type| spec_type == :system}) do
   ...
  end
end

チャットメンバー募集

何か質問、悩み事、相談などあればLINEオープンチャットもご利用ください。

https://line.me/ti/g2/eEPltQ6Tzh3pYAZV8JXKZqc7PJ6L0rpm573dcQ

プロフィール・経歴

https://github.com/YumaInaura/YumaInaura

公開日時

2024-09-25

https://qiita.com/YumaInaura/items/fa350661dae1cbeb0fe5

Discussion