rails 7.2

This commit is contained in:
Pete Matsyburka
2024-10-04 16:20:03 +03:00
committed by Oleksandr Turchyn
parent 35cce24539
commit eefa994724
4 changed files with 164 additions and 160 deletions
-1
View File
@@ -50,7 +50,6 @@ RSpec.configure do |config|
config.include FactoryBot::Syntax::Methods
config.include Devise::Test::IntegrationHelpers
config.include ActiveJob::TestHelper
config.before(:each, type: :system) do
if ENV['HEADLESS'] == 'false'
+1 -1
View File
@@ -81,7 +81,7 @@ RSpec.describe 'Submit Form' do
expect do
click_on 'Sign and Complete'
end.to change(enqueued_jobs, :size).by(1)
end.to change(ProcessSubmitterCompletionJob.jobs, :size).by(1)
end
end
end