Hopefully 🤞 fix flaky test

This commit is contained in:
Daniel Schädler 2025-03-16 13:44:37 +01:00
parent 99b6500e5f
commit 060f3d0422
1 changed files with 3 additions and 0 deletions

View File

@ -203,6 +203,9 @@ RSpec.describe MatchesController, type: :controller do
let(:context) { double(:context, success?: false) } let(:context) { double(:context, success?: false) }
it 'returns unprocessable entity' do it 'returns unprocessable entity' do
# mock match.winner to be the first team of the match to skip winner check here
allow(@running_playoff_match).to receive(:winner).and_return(@running_playoff_match.match_scores.first.team)
put :update, params: { id: @running_playoff_match.to_param }.merge(finished) put :update, params: { id: @running_playoff_match.to_param }.merge(finished)
expect(response).to have_http_status(:unprocessable_entity) expect(response).to have_http_status(:unprocessable_entity)
end end