From b1c8dc1e64d26f6999eedc52c79ae4bc2155ed35 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Sun, 2 Nov 2025 13:56:31 +0100 Subject: [PATCH] Need even more grace to ensure success --- test/system/smoke_test.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/system/smoke_test.rb b/test/system/smoke_test.rb index 8c80c165e..7e0b5e74b 100644 --- a/test/system/smoke_test.rb +++ b/test/system/smoke_test.rb @@ -61,8 +61,8 @@ class SmokeTest < ApplicationSystemTestCase def assert_image_figure_attachment(content_type: "image/png", caption:) assert_figure_attachment(content_type: content_type) do - assert_selector "img[src*='/rails/active_storage']", wait: 5 - assert_selector "figcaption input[placeholder='#{caption}']", wait: 5 + assert_selector "img[src*='/rails/active_storage']", wait: 10 + assert_selector "figcaption input[placeholder='#{caption}']", wait: 10 end end end