Add per-test timeouts to AutoStatusesCleanupScheduler tests (#24841)

This commit is contained in:
Claire 2023-06-20 18:54:05 +02:00 committed by GitHub
parent ebfeaebedb
commit 37a9c2258a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 0 deletions

View File

@ -75,6 +75,12 @@ describe Scheduler::AccountsStatusesCleanupScheduler do
end
describe '#perform' do
around do |example|
Timeout.timeout(30) do
example.run
end
end
before do
# Policies for the accounts
Fabricate(:account_statuses_cleanup_policy, account: account_alice)