From fd5539084caa0eb32d7e87bf7517867ae16cf62b Mon Sep 17 00:00:00 2001 From: Nicholas La Roux Date: Tue, 6 Jan 2026 04:51:57 -0500 Subject: [PATCH] Increase OCR spec timeout from 10 to 20 seconds to improve CI stability (#37393) --- spec/system/ocr_spec.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/system/ocr_spec.rb b/spec/system/ocr_spec.rb index 0f9f6575ea5..5e543e5a56e 100644 --- a/spec/system/ocr_spec.rb +++ b/spec/system/ocr_spec.rb @@ -28,6 +28,6 @@ RSpec.describe 'OCR', :attachment_processing, :inline_jobs, :js, :streaming do click_on('Add text from image') - expect(page).to have_css('#description', text: /Hello Mastodon\s*/, wait: 10) + expect(page).to have_css('#description', text: /Hello Mastodon\s*/, wait: 20) end end